as.mitml.list | R Documentation |
mitml.list
This function adds a mitml.list
class attribute to a list of data frames. The resulting object can be used in further analyses.
as.mitml.list(x)
x |
A list of data frames. |
The original list with an additional class attribute mitml.list
.
The list entries are converted into a data.frame
if necessary, in which case a note is printed.
Simon Grund
is.mitml.list
, long2mitml.list
# data frame with 'imputation' indicator dat <- data.frame(imputation = rep(1:10, each = 20), x = rnorm(200)) # split into a list and convert to 'mitml.list' l <- split(dat, dat$imputation) l <- as.mitml.list(l) is.mitml.list(l) # TRUE