Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. apply(combn(1:dim(A)[2],2),2,function(x) t.test(A[,x[1]],A[,x[2]]))
  2.  
  3. t(apply(combn(1:dim(A)[2],2),2,function(x) c(x[1],x[2],(t.test(A[,x[1]],A[,x[2]]))$p.value)))
  4.  
  5. summary(df)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement