In the standard example of the lme() function in the nlme package of R:
fm2 <- lme(distance ~ age + Sex, data = Orthodont, random = ~ 1)
summary(fm2)
there appears a correlation table:
Correlation:
(Intr) age
age -0.813
SexFemale -0.372 0.000
which can be huge if there are many factor combinations involved.
Is there any way to suppress the output in the summary command? I know that I can use
print(fm2, cor=F)
but this does not show me the rest of the usual output for example no p-value calculation.