|
板凳

楼主 |
发表于 2006-5-10 03:08:27
|
只看该作者
Use log transformation
A lot of people use log transformation, it works for most kinds of data. just create a new variable in your data step,
NewY=log(y);
and do Proc Univariate to test your new variable called 'NewY', if it still not normal, try other mathmethical functions like 1/y, sqrt(y), exp(y),...., or convert your data into categorical data like 'very low, low, medium, high, very high' and use categorical data analysis like Proc freq, proc logistic, proc genmod.
Or use your original data, and choose more robust procedures to do your statistical tests, like PROC NPAR1WAY, PROC NLMIXED, PROC GLIMMIX. |
|