I have a single group pre-post data, with a continuous outcome (a score), and I am looking to see if there are differences in the scores by a binary variable. So I have a pre score, a post score, a calculated change score, and a binary (yes/no) variable for each patient (N=44). I fit an anova and an ancova adjusting for pre scores to the data for outcome 1=post and outcome 2=change. The residuals for both are non-normal. Is there some sort of non-parametric version of the ANCOVA I can use? I do not want to transform as it would create difficulties in interpretations. Code: proc glm data=x; model post= pre|binary / solution; run; proc glm data=x; model change= pre|binary / solution; run;
... View more