d***o 发帖数: 98 | 1 我的research基本靠做实验。 最近得到几组data,看上去不是normal distribution的
,不知道有没有高人能告诉我怎么测试data的normality?如何决定它到底是不是
normal distribution?
如果不是normal distribution 如何比较大小?以前normal distribution我都是用t-
test来比较
谢谢 |
g***o 发帖数: 31 | 2 用R,SAS.......
不是normal distribution,可以用Distribution free tests,比如wilcoxon rank sum
test, wilcoxon signed rank test
【在 d***o 的大作中提到】 : 我的research基本靠做实验。 最近得到几组data,看上去不是normal distribution的 : ,不知道有没有高人能告诉我怎么测试data的normality?如何决定它到底是不是 : normal distribution? : 如果不是normal distribution 如何比较大小?以前normal distribution我都是用t- : test来比较 : 谢谢
|
p********6 发帖数: 1339 | 3 You can use two-sample t-test if you have a large sample size and the
distributions are not highly skewed, no matter whether they are Normal or not. |
d***o 发帖数: 98 | 4
sum
谢谢帮忙,我正在学用 wilcox.text(). 输出的数据中,W代表什么?是不是 p<0.05就
说明signifcant different?
还有在那之前,我打算用shapiro.test()来测一下normality. 可是不懂输出是什么意
思。W是不是越大(最大是一)越normal? P-value又说明什么呢?是不是如果大于(还
是小于?!)0.05就说明是normal的?我在这个地方迷糊了
【在 g***o 的大作中提到】 : 用R,SAS....... : 不是normal distribution,可以用Distribution free tests,比如wilcoxon rank sum : test, wilcoxon signed rank test
|
x**g 发帖数: 807 | 5 Proc means data = xxx skewness kurtosis ;
var yyy;
run;
其实不仅是分布,还有很多方面可以帮助你决定是否需要将数据作为非正态来处理。比
如说,数据的连续性,sample size, cluster data v.s. not clustering; 拟采用的
Model对数据非正态分布是否robust?
【在 d***o 的大作中提到】 : 我的research基本靠做实验。 最近得到几组data,看上去不是normal distribution的 : ,不知道有没有高人能告诉我怎么测试data的normality?如何决定它到底是不是 : normal distribution? : 如果不是normal distribution 如何比较大小?以前normal distribution我都是用t- : test来比较 : 谢谢
|
s*****n 发帖数: 2174 | 6 shapiro.test() 挺好的,
Ho 是 被检分布为正态.
Ha 是 被检分布非正态.
p value < 0.05 则拒绝零假设, 说明被检验分布非正态.
p value > 0.05 说明没有足够证据说明被检分布非正态.
【在 d***o 的大作中提到】 : : sum : 谢谢帮忙,我正在学用 wilcox.text(). 输出的数据中,W代表什么?是不是 p<0.05就 : 说明signifcant different? : 还有在那之前,我打算用shapiro.test()来测一下normality. 可是不懂输出是什么意 : 思。W是不是越大(最大是一)越normal? P-value又说明什么呢?是不是如果大于(还 : 是小于?!)0.05就说明是normal的?我在这个地方迷糊了
|
g**r 发帖数: 425 | 7 If you use SAS, you can run PROC CAPABILITY; an interesting tool.
If the curve seems skewed, you can also consider transform your data, e.g.,
take the log or square root.
【在 d***o 的大作中提到】 : 我的research基本靠做实验。 最近得到几组data,看上去不是normal distribution的 : ,不知道有没有高人能告诉我怎么测试data的normality?如何决定它到底是不是 : normal distribution? : 如果不是normal distribution 如何比较大小?以前normal distribution我都是用t- : test来比较 : 谢谢
|