apparently there is an unexpected symbol in my coding. this is what is says in the console:
> source('~/.active-rstudio-document')
Error in source("~/.active-rstudio-document") :
~/.active-rstudio-document:27:1: unexpected symbol
26: #main effect model
27: Model_ME
so i know the error is on my 27th line and the first character, this is what is in my script in that location...
Model_ME <- glmer (BinaryResponse ~ 1 + (1|ImageFace) + (1|ImageSex) + (1|ImageEthnicity), data = CompleteData, family = "binomial")
im so confused i did a similar formula to this above and was no issues? ill insert here..
Model_Null <- glmer (BinaryResponse ~ 1 + (1|TrailNumber) + (1|PPTID), data = CompleteData, family = "binomial"
please help me whats the unexpected symbol?