powered by
Perform a random permutation of the data list.
perm.pairs( x )
It returns a list with paired elements of x randomly permuted.
x
a list of numerical vectors to be compared (each vector is an element of the list).
Massimiliano Pastore
set.seed(20150605) x <- list(X1=rnorm(10), X2=rt(15,8)) perm.pairs( x ) x <- list(X1=rnorm(10), X2=rt(15,8), X3=rchisq(12,3)) perm.pairs( x )
Run the code above in your browser using DataLab