View source: R/find_parameters_emmeans.R
find_parameters.emmGrid | R Documentation |
Returns the parameter names from a model.
## S3 method for class 'emmGrid'
find_parameters(x, flatten = FALSE, merge_parameters = FALSE, ...)
x |
A fitted model. |
flatten |
Logical, if |
merge_parameters |
Logical, if |
... |
Currently not used. |
A list of parameter names. For simple models, only one list-element,
conditional
, is returned.
data(mtcars)
model <- lm(mpg ~ wt * factor(cyl), data = mtcars)
emm <- emmeans(model, c("wt", "cyl"))
find_parameters(emm)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.