data set shuffling tool
This function is wrapper to shuffle elegantly data-set. This function shuffle selected columns of a given data.set according to a defined shuffling algorithm.
randomise_data(data,variable,method)
data |
a |
variable |
the variables names or columns id you want to shuffle |
method |
the randomisation method (only 'full_rand' available yet) |
a data.frame
with selected columns shuffled compared to the original table.
Damien Georges
xx <- data.frame(a=1:10,b=11:20,c=21:30) randomise_data(data=xx, variable='b', method='full_rand')
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.