View source: R/tabularise.lm.R
tabularise_default.lm | R Documentation |
The default tabularise()
method for lm objects create a minimalist
table with result of the analysis in a rich-formatted tabular presentation.
## S3 method for class 'lm'
tabularise_default(data, ..., kind = "ft", env = parent.frame())
data |
An lm object |
... |
Additional arguments passed to |
kind |
The kind of table to produce: "tt" for tinytable, or "ft" for flextable (default). |
env |
The environment where to evaluate the model. |
A flextable object that you can print in different formats (HTML, LaTeX, Word, PowerPoint) or rearrange with the {flextable} functions.
iris_lm <- lm(data = iris, Petal.Length ~ Sepal.Length)
tabularise::tabularise(iris_lm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.