Skip to content
Prev 15935 / 20628 Next

broom package and MCMCglmm estimates

There is an MCMCglmm method in my fork of broom :

devtools::install_github("bbolker/broom")
library(broom)
library(MCMCglmm)
data(PlodiaPO)
model1 <- MCMCglmm(PO~1, random=~FSfamily, data=PlodiaPO,
  verbose=FALSE,  nitt=1300, burnin=300, thin=1)
tidy(model1)
##   effect        term estimate  std.error
## 1  fixed (Intercept) 1.162818 0.01656339

  I make no claims as to its completeness, but am happy to accept issues
or pull requests.  Eventually the stuff in my fork will get migrated to
a separate "broom.mixed" (or some such) package.
On 17-10-24 05:56 PM, dani wrote: