Dear all,
I have survey data with a treatment (0, 1) and a dependent variable that takes values from 0 to 8 (It is generated from how many 1's the subjects have answered from 8 binary questions), which I recode for the purpose of my research as from 0 to 3 (0 being the most extreme cases of the DV - 0, 1, 7, 8). I have a between-subject design and want to test differences in that variable across treatment. I am providing with a minimal example:
My current idea is to do a Mann-Whitney U test for the non-recoded variable and a Chi-squared test for each treatment separately to test if it is significantly different from random. However both the Mann-Whitney and Chi-squared only look at the mean only but my research question is concerning differences in skewness between treatment and control (treatment having more DV_recode 0's than control). Is there more formal test that does that other than simply comparing the skewness of both groups?
Thank you!
Sincerely,
Radoslav
P.S. I read about Pearson residuals that could help see from where the differences in the Chi-squared come from. Would that be a suitable option? If so how is it implemented in Stata?
I have survey data with a treatment (0, 1) and a dependent variable that takes values from 0 to 8 (It is generated from how many 1's the subjects have answered from 8 binary questions), which I recode for the purpose of my research as from 0 to 3 (0 being the most extreme cases of the DV - 0, 1, 7, 8). I have a between-subject design and want to test differences in that variable across treatment. I am providing with a minimal example:
Code:
clear input float(id treatment DV DV_recode) 1 0 5 2 2 1 8 0 3 1 1 0 4 1 8 0 5 0 6 1 6 1 0 0 7 1 0 0 8 1 3 2 9 1 4 3 10 0 4 3 11 0 5 2 12 0 7 0 13 1 0 0 14 1 2 1 15 0 3 2 16 0 6 1 17 1 8 0 18 1 8 0 19 1 0 0 20 0 1 0 21 0 2 1 22 0 2 1 23 1 5 2 24 0 6 1 25 1 3 2 end
My current idea is to do a Mann-Whitney U test for the non-recoded variable and a Chi-squared test for each treatment separately to test if it is significantly different from random. However both the Mann-Whitney and Chi-squared only look at the mean only but my research question is concerning differences in skewness between treatment and control (treatment having more DV_recode 0's than control). Is there more formal test that does that other than simply comparing the skewness of both groups?
Thank you!
Sincerely,
Radoslav
P.S. I read about Pearson residuals that could help see from where the differences in the Chi-squared come from. Would that be a suitable option? If so how is it implemented in Stata?
Comment