I want to test fixed and random effects with the lmerTest R-package. After defining the model with lmer(), I use summary() to get the results. For my results report, I would like to display more decimals of AIC and BIC, of Variance and Std.Dev in Random Effects, of the Estimate and Std.Error (see picture: my output summary(lmer) with missing/few decimals ).
Things I have already tried out that do not help:
- changing general R options
options(digits=3)
- changing options within summary() or coef(summary())
summary(lmer, digits=3)
coef(summary(lmer), digits=3)
- using round() for summary() or coef(summary())
round(summary(lmer), digits=3)
round(coef(summary(lmer)), digits=3)
- searching the terms "digit" and "decimal" in the lmerTest R-package manual