一眼瞬间 发表于 2010-3-20 16:01 
I'm trying to compare the cv of every group.
变异系数
eg. rank the cv, or know more about the statistics of those "cv"s
算我孤陋寡闻,真的没有听所过这么弄的?请问这样弄的背后有什么意思么?
要rank cv,在完成proc mean 时候,before run,加上out=,然后指定你要什么information,例如mean 和standard deviation
就是 output out=mycv mean=mean stdev=stdev;
然后你想要rank 的话就是 sort咯,然后univariate,或者mean。。。。。。
depends on what you want!
last comment, 在out的option里边,不知道是否有CV可以提取,详情参考sas 的help吧。如果没有就用data step吧,反正
CV=mean/stdev。