I'm trying to create some simulated data for use in the simr package via the makeLmer function. I'm trying to produce a data set with 110 participants in a 2 x 2 x 2 within subjects factorial model. This makes 156 trials on a computerized task per participant. I keep getting this error:
"Error in model.frame.default(data = newdata, weights = weights, offset = offset, : variable lengths differ (found for 'subject')"
My code is below (sorry for the clunky bits). If anyone knows what I'm doing wrong, any help would be very much appreciated! Thanks so much. Cheers, Tom
#110 participants
subj <- factor(1:110)
## 2 sizes
size<- factor(c("one", "twelve"))
## alcohol prime
alcohol <- factor(c("alcohol", "noalcohol"))
## gender of faces
crowdgender <- factor(c("Male", "Female"))
subj_full <- rep(subj, times = 156)
size_full1 <- rep(rep("one", each=78), 110)
size_full2 <- rep(rep("twelve", each=78), 110)
size_full1<-data.frame(size_full1)
size_full2<-data.frame(size_full2)
size_full2 <- dplyr::rename(size_full2, size_full1 = size_full2)
size_full<-rbind(size_full1,size_full2)
size_full <- dplyr::rename(size_full, size_full = size_full1)
head(size_full)
alcohol_full <- data.frame(rep(rep(alcohol, each = 78), 110))
head(alcohol_full)
#R gave the column a weird name.
alcohol_full <- dplyr::rename(alcohol_full, alcohol_full = rep.rep.alcohol..each...78...110.)
head(alcohol_full)
crowdgender_full1 <- data.frame(rep(rep(rep(crowdgender, each = 39), 110),2))
head(crowdgender_full1)
crowdgender_full <- dplyr::rename(crowdgender_full1, crowdgender_full = rep.rep.rep.crowdgender..each...39...110...2.)
head(crowdgender_full)
## Combine all the variables together into one data frame
covars <- data.frame(subject=subj_full, size= size_full,
alcohol =alcohol_full, crowdgender=crowdgender_full)
covars
#set fixed effect sizes (intercept and slopes)
fixed<-list(c(.1, .2, .15, .6, .9, .3, .12, .25))
#random intercept for participants
rand<-1
#residual variance
res<-2.5
#make model
model<-makeLmer(y ~ size*alcohol*crowdgender + (1|subject), fixef = fixed, VarCorr = rand, sigma = res, data = covars)
summary(model)
install.packages("simr") library(simr)