I do not understand what the difference between these two models is ( I am using the lmer4 package)
Model.1<-lmer(Y~ X1+ X2+ X3
+(1|Subject) + (0+X1|Subject)+ (0+X2|Subject),
data=Data, REML=FALSE)
Model.2<-lmer(Y~ X1+ X2+ X3
+(1|Subject) + (X1|Subject)+ (X2|Subject),
data=Data, REML=FALSE)
When I compare these two models, I get different degrees of freedom (with model 1 having less than model 2). But I am not sure what the (0+..) notation does to the random effect, and how I decide on a theoretical level which model to use (other than comparing BIC scores).