Displaying 1 result from an estimated 1 matches for "distribution_1".
Did you mean:
distribution_
2010 Mar 25
1
Expected pairwise.student.t and TukeyHSD behavior?
...ld, in cases like this, pairwise.t.test return an error or warning indicating what might be the cause for the NA's being returned? Also, should TukeyHSD similarly return a warning about this situation?
Thanks again for any insights and feedback.
length_1<-1
mean_1<-0.0
sd_1<-0.0
distribution_1<-rnorm(length_1, mean=mean_1, sd=sd_1)
length_2<-750
mean_2<-0.5
sd_2<-0.0
distribution_2<-rnorm(length_2, mean=mean_2, sd=sd_2)
length_3<-850
mean_3<-0.1
sd_3<-0.65
distribution_3<-rnorm(length_3, mean=mean_3, sd=sd_3)
length_4<-850
mean_4<-0.0
sd_4<-0.65
d...