View source: R/tabularise.anova.R
tabularise_tidy.anova | R Documentation |
Tidy version of the anova object into a flextable object
## S3 method for class 'anova'
tabularise_tidy(
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 (used for changing
the labels). By default, it is |
labs |
Labels to use to change the names of elements in the |
lang |
The natural language to use. The default value can be 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$tidy(iris_anova)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.