lapply_descr {DescrTab2} | R Documentation |
Convenience function to apply descr to a list of datasets and print the results
Description
Convenience function to apply descr to a list of datasets and print the results
Usage
lapply_descr(list, ...)
Arguments
list |
a list of datasets (tibbles or data.frames) |
... |
arguments to be passed to the descr call |
Value
something printable.
Examples
l <- list()
for (i in 1:2){
l <- append(l, list(iris))
}
lapply_descr(l, group="Species")
[Package DescrTab2 version 2.1.16 Index]