#1 |
#LSD(least significant difference)最小显著差异 |
def LSD(list_groups,list_total,sample1,sample2): |
mean1 = np.mean(sample1) |
mean2 = np.mean(sample2) |
distance = abs (mean1 - mean2) |
print "distance:" ,distance |
#t检验的自由度 |
df = len (list_total) - 1 * len (list_groups) |
mse = MSE(list_groups,list_total) |
print "MSE:" ,mse |
t_value = stats.t(df).isf(a / 2 ) |
print "t value:" ,t_value |
lsd = t_value * math.sqrt(mse * ( 1.0 / len (sample1) + 1.0 / len (sample2))) |
print "LSD:" ,lsd |
if distance<lsd: |
print "no significant difference between:" ,sample1,sample2 |
else : |
print "there is significant difference between:" ,sample1,sample2 |
#2 |
#多重比较 |
def Multiple_test(list_groups): |
print "multiple test----------------------------------------------" |
combination = Combination(list_groups) |
for pair in combination: |
LSD(list_groups,list_total,pair[ 0 ],pair[ 1 ]) |
中级程序员
by: chengtian 发表于:2021-11-15 14:20:23 顶(0) | 踩(0) 回复
开始踏入编程的世界,虽然说我现在是菜鸟,我相信总有一天会成为大佬的
回复评论