Hi all,
I am currently working on analyzing the impact of a particular project. The data that I have is ordinal - Likert scale data with options ranging from 1 (Not at all) to 7 (very participative) - wherein extent of participation was asked "before" the start of the project and "after" the project. In this case, I would like to figure out if there is a significant difference between the before and after responses. One of the tests suggested is Wilcoxon Mann-Whitney rank sum test for ordinal data. The stata code for this is:
I was quite confused since I do not really have a grouping variable. What I do have are variables for "before" and "after" responses. Hence, I would like to ask if there's anyway to get around this and still implement the test without the need of having a grouping variable? If not, can I simply use the paired t-test instead?
Thank you in advance.
Lovely
I am currently working on analyzing the impact of a particular project. The data that I have is ordinal - Likert scale data with options ranging from 1 (Not at all) to 7 (very participative) - wherein extent of participation was asked "before" the start of the project and "after" the project. In this case, I would like to figure out if there is a significant difference between the before and after responses. One of the tests suggested is Wilcoxon Mann-Whitney rank sum test for ordinal data. The stata code for this is:
Code:
ranksum varname [if] [in], by(groupvar)
Thank you in advance.
Lovely
Comment