knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%", eval = TRUE ) options(width = 100) polcom <- tidyversity::polcom
🎓 Tidy tools for academics
Install the development version from Github with:
## install devtools if not already if (!requireNamespace("devtools", quietly = TRUE)) { install.packages("devtools") } ## install tidymlm from Github devtools::install_github("mkearney/tidymlm")
Load the package (it, of course, plays nicely with tidyverse).
## load tidyverse library(tidyverse) ## load tidymlm library(tidymlm)
Estimate multilevel (mixed effects) models.
lme4::sleepstudy %>% tidy_mlm(Reaction ~ Days + (Days | Subject)) %>% summary()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.