I saw this question a bit earlier and thought:
The sampling and keeping the list structure is pretty straight forward, but what about the efficiency?
So...
Permutating list elements while keeping list structure.
Well, we just have to have some benchmarks and alternatives, as well as having something scalable and efficient...
library(rbenchmark)
library(plyr)
# The common dataset.
data <- list(c(1, 5, 6, 3), c(2, 4, 7, 8), c(9), c(10, 11, 15), c(12, 13, 14))
# The answer given later by Lymond states the names are 'already provided'
names(data) <- paste("set", 1:5, sep = "")
# Dwin's direct list building method - not scalable due to hard-coding.
# Since the unlisting would capture the original names it has been
# modified to drop them.
direct.method <- function(data) {
x <- sample(unlist(data, use.names = FALSE))
list(one = x[1:4], two = x[5:8], three = x[9], four = x[10:12], five = x[13:16])
}
cut.by.method <- function(data) {
# While
sizes <- lapply(data, length)
cut.by <- rep(names(data), times = sizes)
split(sample(1:15, 15), cut.by)
}
# As part of base we have a 'relist' command...
relist.method <- function(data) {
relist(sample(unlist(data)), data)
}
# In utils we also have 'stack' and 'unstack'...
stacking.method <- function(data) {
stacked.data <- stack(data)
stacked.data$values <- sample(stacked.data$values)
unstack(stacked.data)
}
# And we can't forget that rapply can give back the list structure...
rapply.method <- function(data) {
rapply(data, function(x, s) s[x], s = sample(unlist(data, use.names = FALSE)),
how = "list")
}
# And the venerable llply from plyr
llply.method <- function(data) {
llply(data, function(x, s) s[x], s = sample(unlist(data, use.names = FALSE)))
}
# And the base llapply.
lapply.method <- function(data) {
lapply(data, function(x, s) s[x], s = sample(unlist(data, use.names = FALSE)))
}
# And the internalized llapply sequential index method.
internal.lapply.method <- function(data) {
ld <- length(.Internal(unlist(data, TRUE, FALSE)))
lapply(data, function(x, sd) sd[x], sd = .Internal(sample(ld, ld, FALSE,
NULL)))
}
Drum roll
within( benchmark( direct.method( data ),
cut.by.method( data ),
relist.method( data ),
stacking.method( data ),
rapply.method( data ),
llply.method( data ),
lapply.method( data ),
internal.lapply.method( data ),
replications = 5000,
columns=c('test', 'elapsed', 'replications', 'relative'),
order= "relative" ),
{ average = elapsed / replications} )
## test elapsed replications relative average
## 1 direct.method(data) 0.19 5000 1.000 0.000038
## 8 internal.lapply.method(data) 0.23 5000 1.211 0.000046
## 7 lapply.method(data) 0.27 5000 1.421 0.000054
## 5 rapply.method(data) 0.64 5000 3.368 0.000128
## 6 llply.method(data) 0.71 5000 3.737 0.000142
## 3 relist.method(data) 1.18 5000 6.211 0.000236
## 2 cut.by.method(data) 1.43 5000 7.526 0.000286
## 4 stacking.method(data) 11.53 5000 60.684 0.002306
It looks like we have a winner!
The internalized lapply gives everything we'd want and does it almost as fast as the direct method. One interesting thing to note regarding the test set is if we know that the elements contained in the bins are sequential (as if being an index to another container of objects ) then we can do away with subsetting the unlisted data (ud) when generating the sampled data (sd) and just use the length of the unlisted list for the call to sample.