nest | R Documentation |
nest
mainly intended for usage with table functions such as
cro. See examples. %nest%
is infix version of this function.
You can apply nest
on multiple-response variables/list of variables
and data.frames.
nest(...)
x %nest% y
... |
vectors/data.frames/lists |
x |
vector/data.frame/list |
y |
vector/data.frame/list |
vector/data.frame/list
See also interaction
data(mtcars)
mtcars = apply_labels(mtcars,
cyl = "Number of cylinders",
vs = "Engine",
vs = num_lab("
0 V-engine
1 Straight engine
"),
am = "Transmission",
am = num_lab("
0 Automatic
1 Manual
"),
carb = "Number of carburetors"
)
data.table::setDTthreads(2) # for running on CRAN
cross_cases(mtcars, cyl, am %nest% vs)
# list of variables
cross_cases(mtcars, cyl, am %nest% list(vs, cyl))
# list of variables - multiple banners/multiple nesting
cross_cases(mtcars, cyl, list(total(), list(am, vs) %nest% cyl))
# three variables
cross_cases(mtcars, am %nest% vs %nest% carb, cyl)
# the same with usual version
cross_cases(mtcars, cyl, nest(am, vs))
# three variables
cross_cases(mtcars, nest(am, vs, carb), cyl)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.