search for: your_test

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

Did you mean: your_host
2016 Apr 05
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...ss2<-sample_sizes[2,ss] then step through your SDs: ssd_index<-1 for(ssd in ssds) { # generate the two samples with the SDs sample1<-rnorm(ss1,ssd) sample2<-rnorm(ss2,ssd) # here run your tests, recording the results that you want results[[(ss-1)*nssds+ssd_index]]<-<your_test> ssd_index<-ssd_index+1 } } The list "results" should now contain the results of whatever test you run. Be careful to get the order right. Jim On Tue, Apr 5, 2016 at 8:07 PM, tan sj <sj_style_1125 at outlook.com> wrote: > hi, Jim, > i am not very clear about yours...
2016 Apr 06
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...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 into matrix then use a loop for...
2016 Apr 06
0
R-dvel [robustness Simulation study of 2 sample test on several combination of factors ]
...; > 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 into matrix...