如何对含有nan值的两个向量使用t.test函数

时间:2016-04-11 17:41:46

标签: r

有人有解决此问题的方法:

student1 <- as.data.frame(matrix(NA,n,1))

for (j in 1:n){
  student1[j]<-if(t.test(matrice_tas2[j,], 
         matrice_tas1[j,],var.equal = FALSE)$p.value <=0.05){student1[j] <- 1.}
         else {student1[j] <- 0.}  
}
  

t.test.default(matrice_tas2 [j,],matrice_tas1 [j,],var.equal = FALSE)出错:     nombre d&#39;观察&#39; y&#39; insuffisant

当matrice_tas2,matrice_tas1中有一些na.values时,如何计算t检验?

0 个答案:

没有答案