Sort a list of imputed data sets
Sorts a list of multiply imputed data sets according to an R expression.
## S3 method for class 'mitml.list' sort(x, decreasing = FALSE, by, ...)
x |
A list of imputed data sets with class |
decreasing |
Logical flag indicating if data sets should be sorted in decreasing (i.e., reversed) order. Default is ' |
by |
An R expression or a list of multiple expressions by which to sort the imputed data sets (see 'Examples'). |
... |
Further arguments to ' |
This function sorts a list of imputed data sets according to the R expression given in the by
argument.
The function is based on order
and works in a similar manner.
Note that sorting is performed individually for each data set.
For this reason, the order of cases may differ across data sets if the variables used for sorting contain different values.
A list of imputed data sets with class mitml.list
.
Simon Grund
data(studentratings) fml <- ReadDis + SES ~ ReadAchiev + (1|ID) imp <- panImpute(studentratings, formula = fml, n.burn = 1000, n.iter = 100, m = 5) implist <- mitmlComplete(imp) # * Example 1: sort by ID sort(implist, by = ID) # * Example 2: sort by combination of variables sort(implist, by = list(FedState, ID, -SES))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.