Diyelim ki ortalama üç bağımsız grubum var sırasıyla.
Nasıl test edebilirim ya da kullanmamak her gruptan örnekler?
Ayrıntılı hesaplama değil, bazı genel metodolojileri bilmek istiyorum. Hipotezimi nasıl ayarlayacağımı anlayamadım ve .
Diyelim ki ortalama üç bağımsız grubum var sırasıyla.
Nasıl test edebilirim ya da kullanmamak her gruptan örnekler?
Ayrıntılı hesaplama değil, bazı genel metodolojileri bilmek istiyorum. Hipotezimi nasıl ayarlayacağımı anlayamadım ve .
Yanıtlar:
İstatistiklerde "X'in doğru olup olmadığını" test edemezsiniz. Yalnızca sıfır hipotezinin yanlış olduğuna dair kanıt bulmaya çalışabilirsiniz.
Diyelim ki sıfır hipoteziniz
Kudo, Akio (1963). “Tek taraflı testin çok değişkenli bir analogu”. In: Biometrika 50.3 / 4, s. 403-418.
Bu test ayrıca, normalite varsayımı yalnızca yaklaşık olarak ("asimtotik olarak") geçerliyse de çalışır. Örneğin, gruplardan örnek araçlar çizebilirseniz işe yarayacaktır. Boyut örnekleri çizerseniz ve gruplardan bağımsız olarak çizim yapabiliyorsanız köşegenli bir köşegen matristir
Öte yandan alternatif hipoteziniz
Another way of constructing a test for is to note that
The answer provided by @andreas-dzemski is correct only if we know that the data is normally distributed.
If we do not know the distribution, I believe it would be better to run a nonparametric test. In this case, the simplest seems to run a permutation test. This is a book about the topic and this is a nice online explanation. Below I include R code to compute this test.
# some test data
D <- data.frame(group1=c(3,6,2,2,3,9,3,4,2,5), group2=c(5,3,10,1,10,2,4,4,2,2), group3=c(8,0,1,5,10,7,3,4,8,1))
# sample with replacement
resample <- function(X) sample(X, replace=TRUE)
# return true if mu1 < mu2 < mu3
test <- function(mu1, mu2, mu3) (mu1 < mu2) & (mu2 < mu3)
# resampling test that returns the probability of observing the relationship
mean(replicate(1000, test(mean(resample(D$group1)), mean(resample(D$group2)), mean(resample(D$group3)))))