Description Usage Arguments Value Examples
tidyEstimates
extracts the estimate of group effect from a fitted
linear model.
1 | tidyEstimates(fit, data)
|
fit |
An |
data |
A data frame used to derive the model object |
A data frame restoring the estimated model parameters.
1 2 3 4 5 6 | x <- data.frame(
group=rep(c("1", "2"), 3),
log2inty=rep(c(10, 12), 3) + rnorm(6)
)
fit <- fitLinearModel(x)
tidyEstimates(fit, x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.