A template for a row in an ANOVA table.
row_blank(
term = NA_character_,
description = NA_character_,
ss = NA_real_,
df = NA_integer_,
ms = ss/df,
f = NA_real_,
pre = NA_real_,
p = NA_real_
)
A tibble_row
of length 1 with all of the variables initialized.
The name of the term the row describes.
An optional, short description of the term (pedagogical).
The sum of squares for the term (defaults to blank)
The degrees of freedom the term uses (defaults to blank).
The mean square for the term (defaults to ss / df
)
Fisher's F statistic for the term in the model (defaults to blank).
The proportional reduction of error the term provides (defaults to blank).
The p-value of the F (and PRE) for the term in the model (defaults to blank).