search for: popc1

Displaying 2 results from an estimated 2 matches for "popc1".

Did you mean: pop01
2012 Apr 19
1
Performing t tests between matrices
I need to perform 10000 T tests #I have two populations with different means Popc1<-rnorm(100000,10,2) Popc2<-rnorm(100000,8,2) #I created two sets of samples - each set has 10000 samples, and I made a matrix of 20 rows and 10000 columns to fit the data sampc1<-matrix(,20,10000) for(j in 1:10000){sampc1[1:20,j]<-sample(Popc1,20)} sampc2<-matrix(,20,10000) for(...
2012 Apr 19
1
Performing repeated T tests in R
I need to perform 10000 T tests #I have two populations with different means Popc1<-rnorm(100000,10,2) Popc2<-rnorm(100000,8,2) #I created two sets of samples - each set has 10000 samples, and I made a matrix of 20 rows and 10000 columns to fit the data sampc1<-matrix(,20,10000) for(j in 1:10000){sampc1[1:20,j]<-sample(Popc1,20)} sampc2<-matrix(,20,10000) for(j i...