search for: permt

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

Did you mean: permit
2009 Sep 08
0
Confusion on use of permTS() in 'perm'
Consider the following simple example using R-2.9.0 and 'perm' 2.9.1: > require('perm') > p<- c(15,21,26,32,39,45,52,60,70,82) > g<- c('y','n','y','y', rep('n',6)) #Patients ranked 1,3,4 receive treatment > permTS(p ~ g, alternative = 'two.sided', method='exact.ce') #find p-value by complete enumeration Exact Permutation Test (complete enumeration) data: p by g p-value = 0.05 alternative hypothesis: true mean of g=n minus mean of g=y is not equal to 0 sample estimates: mean of g...
2011 Apr 07
1
Randomisation tests
Hi, I want to ue a randomisation test, to compare two sample means, for a small set of data, I've looked at towt.permutation, perm.test and permtest, as well as permTS(), which is the best one to use for such a simple purpose? I know perm.test package isn't used anymore and coins recommended, but reading the manual I couldnt find the function most like it, ore more likely I didn't understand the lingo used to know it's what I...