Learn R Programming

DescrTab2 (version 2.1.16)

lapply_descr: 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, ...)

Value

something printable.

Arguments

list

a list of datasets (tibbles or data.frames)

...

arguments to be passed to the descr call

Examples

Run this code
l <- list()
for (i in 1:2){
  l <- append(l, list(iris))
}
lapply_descr(l, group="Species")

Run the code above in your browser using DataLab