powered by
produce a flextable describing a mixed model. The function is only using package 'broom.mixed' that provides the data presented in the resulting flextable.
# S3 method for merMod as_flextable(x, ...)# S3 method for lme as_flextable(x, ...)# S3 method for gls as_flextable(x, ...)# S3 method for nlme as_flextable(x, ...)# S3 method for brmsfit as_flextable(x, ...)# S3 method for glmmTMB as_flextable(x, ...)# S3 method for glmmadmb as_flextable(x, ...)
# S3 method for lme as_flextable(x, ...)
# S3 method for gls as_flextable(x, ...)
# S3 method for nlme as_flextable(x, ...)
# S3 method for brmsfit as_flextable(x, ...)
# S3 method for glmmTMB as_flextable(x, ...)
# S3 method for glmmadmb as_flextable(x, ...)
a mixed model
unused argument
Other as_flextable methods: as_flextable.data.frame(), as_flextable.gam(), as_flextable.glm(), as_flextable.grouped_data(), as_flextable.htest(), as_flextable.kmeans(), as_flextable.lm(), as_flextable.pam(), as_flextable.summarizor(), as_flextable.table(), as_flextable.tabular(), as_flextable.tabulator(), as_flextable.xtable(), as_flextable()
as_flextable.data.frame()
as_flextable.gam()
as_flextable.glm()
as_flextable.grouped_data()
as_flextable.htest()
as_flextable.kmeans()
as_flextable.lm()
as_flextable.pam()
as_flextable.summarizor()
as_flextable.table()
as_flextable.tabular()
as_flextable.tabulator()
as_flextable.xtable()
as_flextable()
if(require("broom.mixed") && require("nlme")){ m1 <- lme(distance ~ age, data = Orthodont) ft <- as_flextable(m1) ft }
Run the code above in your browser using DataLab