- model
A fitted model
- intercept
How should the intercept be displayed? Default is "alpha"
,
but can also accept "beta"
, in which case the it will be displayed
as beta zero.
- greek
What notation should be used for
coefficients? Currently only accepts "beta"
(with plans for future
development). Can be used in combination with raw_tex
to use any
notation, e.g., "\hat{\beta}"
.
- greek_colors
The colors of the greek notation in the equation. Must
be a single color (named or HTML hex code) or a vector of colors (which
will be recycled if smaller than the number of terms in the model). When
rendering to PDF, I suggest using HTML hex codes, as not all named colors
are recognized by LaTeX, but equatiomatic will internally create the
color definitions for you if HTML codes are supplied. Note that this is
not yet implemented for mixed effects models (lme4).
- subscript_colors
The colors of the subscripts for the greek notation.
The argument structure is equivalent to greek_colors
(i.e., see
above for more detail).
- var_colors
The color of the variable names. This takes a named vector
of the form c("variable" = "color")
. For example
c("bill_length_mm" = "#00d4fa", "island" = "#00fa85")
. Colors can
be names (e.g., "red"
) or HTML hex codes, as shown in the example.
- var_subscript_colors
The colors of the factor subscripts for
categorical variables. The interface for this is equivalent to
var_colors
, and all subscripts for a given variable will be
displayed in the provided color. For example, the code
c("island" = "green")
would result in the subscripts for "Dream"
and "Torgersen" being green (assuming "Biscoe" was the reference group).
- raw_tex
Logical. Is the greek code being passed to denote coefficients
raw tex code?
- swap_var_names
A vector of the form c("old_var_name" = "new name").
For example: c("bill_length_mm" = "Bill Length (MM)").
- swap_subscript_names
A vector of the form
c("old_subscript_name" = "new name"). For example:
c("f" = "Female").
- ital_vars
Logical, defaults to FALSE
. Should the variable names
not be wrapped in the \operatorname{}
command?
- label
A label for the equation, which can then be used for in-text
references. See example here.
Note that this only works for PDF output. The in-text references also
must match the label exactly, and must be formatted as
\ref{eq: label}
, where label
is a place holder for the
specific label. Notice the space after the colon before the label. This
also must be there, or the cross-reference will fail.
- index_factors
Logical, defaults to FALSE
. Should the factors
be indexed, rather than using subscripts to display all levels?
- show_distribution
Logical. When fitting a logistic or probit
regression, should the binomial distribution be displayed? Defaults to
FALSE
.
- wrap
Logical, defaults to FALSE
. Should the terms on the
right-hand side of the equation be split into multiple lines? This is
helpful with models with many terms.
- terms_per_line
Integer, defaults to 4. The number of right-hand side
terms to include per line. Used only when wrap
is TRUE
.
- operator_location
Character, one of “end” (the default) or
“start”. When terms are split across multiple lines, they are split
at mathematical operators like +
. If set to “end”, each line will
end with a trailing operator (+
or -
). If set to “start”, each
line will begin with an operator.
- align_env
TeX environment to wrap around equation. Must be one of
aligned
, aligned*
, align
, or align*
. Defaults
to aligned
.
- use_coefs
Logical, defaults to FALSE
. Should the actual model
estimates be included in the equation instead of math symbols?
- coef_digits
Integer, defaults to 2. The number of decimal places to
round to when displaying model estimates.
- fix_signs
Logical, defaults to TRUE
. If disabled,
coefficient estimates that are negative are preceded with a "+" (e.g.
5(x) + -3(z)
). If enabled, the "+ -" is replaced with a "-" (e.g.
5(x) - 3(z)
).
- font_size
The font size of the equation. Defaults to default of
the output format. Takes any of the standard LaTeX arguments (see
here).
- mean_separate
Currently only support for lmer
models. Should the mean structure be inside or separated from the
normal distribution? Defaults to NULL
, in which case it will become
TRUE
if there are more than three fixed-effect parameters. If
TRUE
, the equation will be displayed as, for example,
outcome ~ N(mu, sigma); mu = alpha + beta_1(wave). If FALSE
, this
same equation would be outcome ~ N(alpha + beta, sigma).
- return_variances
Logical. When use_coefs = TRUE
with a mixed
effects model (e.g., lme4::lmer()
), should the variances and
co-variances be returned? If FALSE
(the default) standard deviations
and correlations are returned instead.
- se_subscripts
Logical. If se_subscripts = TRUE
then the
equation will include the standard errors below each coefficient.
This is supported for lm and glm models.
- ...
Additional arguments (for future development; not currently used).