Hello.
I have a continuous variable (say var1) and three treatments. I was wondering what is the most appropriate method of testing this variable for normality. I am asking because i want to decide whether to use a parametric or non parametric test that tests for differences in var1 across the three treatments.
After consulting the manual, I think for what i want to do, the command mvtest normality is the way forward. However, is it okay to use a generic syntax such as:
or is it necessary to test by treatment level:
I have a continuous variable (say var1) and three treatments. I was wondering what is the most appropriate method of testing this variable for normality. I am asking because i want to decide whether to use a parametric or non parametric test that tests for differences in var1 across the three treatments.
After consulting the manual, I think for what i want to do, the command mvtest normality is the way forward. However, is it okay to use a generic syntax such as:
Code:
mvtest normality var1
Code:
by treatment: mvtest normality var1
Comment