search for: nssds

Displaying 3 results from an estimated 3 matches for "nssds".

Did you mean: ssds
2016 Apr 05
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
Okay, here is a more complete example: sample_sizes<- matrix(c(10,10,10,25,25,25,25,50,25,100,50,25,50,100,100,25,100,100), nrow=2) # see what it looks like sample_sizes ssds<-c(4,4.4,5,6,8) nssds<-length(ssds) results<-list() # first loop steps through the sample for(ss in 1:dim(sample_sizes)[2]) { # get the two sample sizes ss1<-sample_sizes[1,ss] ss2<-sample_sizes[2,ss] then step through your SDs: ssd_index<-1 for(ssd in ssds) { # generate the two samples with the...
2016 Apr 06
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...atrix_Equal matrix_Unequal matrix_mann Jim On Wed, Apr 6, 2016 at 12:43 AM, tan sj <sj_style_1125 at outlook.com> wrote: > Hi, Jim, i read through your example, > I tried to write a code modified yours example and my ideas ... > In last email, you replied that "results[[(ss-1)*nssds+ssd_index]]<-<your_test>" ,can i know further about this ? Because i am not very understand about this . > I am sorry that i am really a new bird in this field... > but the code turn out it have some error ... > Below shown my attempt... > > ## Put the samples sizes in...
2016 Apr 06
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...rix_mann > > Jim > > On Wed, Apr 6, 2016 at 12:43 AM, tan sj <sj_style_1125 at outlook.com> wrote: >> Hi, Jim, i read through your example, >> I tried to write a code modified yours example and my ideas ... >> In last email, you replied that "results[[(ss-1)*nssds+ssd_index]]<-<your_test>" ,can i know further about this ? Because i am not very understand about this . >> I am sorry that i am really a new bird in this field... >> but the code turn out it have some error ... >> Below shown my attempt... >> >> ## Put...