bbolker / broom.mixed

tidy methods for mixed models in R
227 stars 23 forks source link

Error: No tidy method for objects of class summary.glmmTMB #67

Closed skanskan closed 5 years ago

skanskan commented 5 years ago

Hello. I have installed broom.mixed from cran and when I try to use it with glmmTMB models I get this error: tidy(summary(mymodel))

Error: No tidy method for objects of class summary.glmmTMB

and the same error for glance.

bbolker commented 5 years ago

I think you just want tidy(mymodel), glance(mymodel)? Tidying sensu broom doesn't work on summary objects, it works on the model objects themselves ...

skanskan commented 5 years ago

OK, thank you.

None of these commands preserves informations such as the AIC value.

And what is the suggested way to convert that output to LaTeX or save it on a file?