I have a form with a Likert Scale. I need to compute the Mean (easy), the mode, the standard deviation and the median.
How can I do this? I have 10 groups of 11 radio boxes to make up the choices.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
CFLib is your friend.
Mean – Returns the mean (average) value for a set of numeric values. These values can be passed as a list or one dimensional array.
Mode – Returns a structure that contains 2 keys: Mode and Frequency. Mode is the value with the greatest frequency in the set.
StdDevPop – Returns the standard deviation calculated using the divisor n method. This method is used when you have all the values for an entire population.
Median – Returns the median (middle) value for a set of numeric values. The values can come from a list or a one dimensional array.