View source: R/tabularise.anova.R
tabularise_default.anova | R Documentation |
Create a rich-formatted table from an anova object
## S3 method for class 'anova'
tabularise_default(
data,
header = TRUE,
title = header,
auto.labs = TRUE,
origdata = NULL,
labs = NULL,
lang = getOption("data.io_lang", "en"),
show.signif.stars = getOption("show.signif.stars", TRUE),
...,
kind = "ft",
env = parent.frame()
)
data |
An anova object |
header |
If |
title |
If |
auto.labs |
If |
origdata |
The original data set used for the ANOVA. By default it is
|
labs |
Labels to change the default names in the |
lang |
The natural language to use. The default value is set with,
e.g., |
show.signif.stars |
If |
... |
Additional arguments (not used for now) |
kind |
The kind of table to produce: "tt" for tinytable, or "ft" for flextable (default). |
env |
The environment where to evaluate lazyeval expressions (not used for now) |
A flextable object you can print in different form or rearrange with the {flextable} functions.
iris_anova <- anova(lm(data = iris, Petal.Length ~ Species))
tabularise::tabularise(iris_anova)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.