I am trying perform a model comparision of two lmer models using the function PBmodcomp from the pbkrtest package. However I get the following error.
Error in `[<-.data.frame`(`*tmp*`, , rcol, value = c(0.318337014579985, :
replacement has 4080 rows, data has 4458
My data is avaliable here: https://www.dropbox.com/s/oweyw767qtpbqot/Data.txt
head(dat)
Subject time age cognition gender
60002.1 60002 1 0.4898039 -0.6915897 2
60002.2 60002 2 4.4898039 -0.8999999 2
60002.3 60002 3 8.4898039 -1.1619855 2
60008.1 60008 1 2.4898039 -0.2106083 2
60008.2 60008 2 6.4898039 0.3355440 2
60008.3 60008 3 10.4898039 -0.7309111 2
The code I am running is
library(lme4)
library(pbkrtest)
m2 <- lmer(cognition ~ age + (age | Subject), data = dat, REML = FALSE, na.action = na.omit, control = lmerControl(optimizer = "Nelder_Mead"))
m3 <- lmer(cognition ~ age + gender + (age | Subject), data = dat, REML = FALSE, na.action = na.omit, control = lmerControl(optimizer = "Nelder_Mead"))
pb <- PBmodcomp(m3, m2)
How can I resolve this issue?
Thanks
Resolving this issue as suggested by Roland
EDIT
As my actual data is examining multiple response variables I have these functions running inside a loop so I have pasted the code for a loop below as well.