Displaying 2 results from an estimated 2 matches for "matrix_unequ".
Did you mean:
matrix_unequal
2016 Apr 06
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...dim(sample_sizes)[2]*nsds
t_equal <-c(rep(0,length=ncalcs))
t_unequal <-c(rep(0,length=ncalcs))
mann <-c(rep(0,length=ncalcs))
#set up matrix for storing data from the vectors
# but you do want 10000 replications of each calculation
matrix_Equal<-matrix(rep(NA,ncalcs*nSims),nrow=nSims)
matrix_Unequal<-matrix(rep(NA,ncalcs*nSims),nrow=nSims)
matrix_mann<-matrix(rep(NA,ncalcs*nSims),nrow=nSims)
############Simulations
for (sim in 1:nSims){
# this loop steps through the sample sizes
for(ss in 1:dim(sample_sizes)[2]) {
m<-sample_sizes[1,ss]
n<-sample_sizes[2,ss]
# initialize...
2016 Apr 06
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...<-c(rep(0,length=ncalcs))
> t_unequal <-c(rep(0,length=ncalcs))
> mann <-c(rep(0,length=ncalcs))
>
> #set up matrix for storing data from the vectors
> # but you do want 10000 replications of each calculation
> matrix_Equal<-matrix(rep(NA,ncalcs*nSims),nrow=nSims)
> matrix_Unequal<-matrix(rep(NA,ncalcs*nSims),nrow=nSims)
> matrix_mann<-matrix(rep(NA,ncalcs*nSims),nrow=nSims)
>
> ############Simulations
>
> for (sim in 1:nSims){
> # this loop steps through the sample sizes
> for(ss in 1:dim(sample_sizes)[2]) {
> m<-sample_sizes[1,ss]
>...