report: Generic function for creating reporting tables

Description Usage Arguments Value Examples

View source: R/report_model.R

Description

Generic function for creating reporting tables.

Usage

1
report(x, ...)

Arguments

x

An compatibleobject that can be summarized

...

further arguments passed to make_table

Value

A data frame with the report table

Examples

1
2
3
report(iris)  #Report of descriptive statistics
lm1 <- lm(Petal.Length ~ Sepal.Width + Species, data=iris)
report(lm1)   #Report of model

repmod documentation built on March 22, 2021, 5:08 p.m.

Related to report in repmod...