I have run the linear mixed model using lme4
package. Then to see all pair of contrasts, I have to run the lsmeans
function using lsmeans
package. This is the function I run:
library('lme4')
library('lsmeans')
lsmeans(lmer1, pairwise ~ vowel * experience * lang_sound, adjust="tukey")
However I cannot see the whole output as there are too many pairs. Can anyone tell me what I should do to get the output from this function?
I have tried 'sink()
' but it doesn't work. Maybe because there is no name of the lsmeans
command I ran. I am using RStudio on Windows.