I found this code online, but it creates the same average for each observation. I don't need the average for the entire data set, but rather the average for how each individual participant responded.
sum V1 V2 V3 V4 V5
return list
gen average = r(mean)
return list
gen average = r(mean)
compute average = mean(V1, V2, V3, V4, V5).
EXECUTE.
EXECUTE.
0 Response to How to create an averaged scale from multiple variables?
Post a Comment