I am learning how to build GLMM model using R. With respect to the following script, what does the argument of corr=F stand for in the print command?
dative.glmm1 <- lmer(RealizationOfRecipient ~ SemanticClass +
LengthOfRecipient + AnimacyOfRec + DefinOfRec + PronomOfRec + AccessOfRec +
LengthOfTheme + AnimacyOfTheme + DefinOfTheme + PronomOfTheme + AccessOfTheme +
(1|Speaker) + (1|Verb), family="binomial")
print(dative.glmm1, corr=F)
