Hi,
I'm a statistics beginner and I have been spending to many hours trying to figure this out so I finally seek your help with crossed fingers.
I have two groups: injured (=1) and healthy (=0). 30 individuals in each group. The injured were measured (with AAe, NDI, DHI and VAS) at 2 points in time (pre and post treatment) and the healthy were measured with (AAe, NDI and VAS) once
I want to see the effects of DHI, NDI and VAS on the AAe variable
I'm trying to code a mixed model using "lmer" with dependent variable (response variable) "AAe", response variables "NDI", "VAS" and "DHI", with time ("Pre_Post") as a within subjects factor and group (0 or 1, "Group") as a between groups factor.
To complicate things, I mention again: the healthy group did not do the "DHI" test
To complicate more: I marked the healthy group as "pre" in the pre_post column. Not sure if that is correct to do.
so far I have tried this:
lmer1<-lmer(AAe~Pre_Post*Group+NDI+DHI+VAS+(1|ID),data=Dat)
summary(lmer1)
but I get this error:
"fixed-effect model matrix is rank deficient so dropping 2 columns / coefficients"
Is this because I am trying to involve the "DHI" variable when it wasn't used on the healthy group?
If I remove the "Group" input and put "Sex" instead I get these results:
but I have no idea if this is correct or even what the results are telling me as I see no p-value
Can anyone tell me if I am coding this the right way? Should I do two models instead? One to assess the effects of DHI, NDI and VAS on AAe with time as within subjects factor and another to assess effects of NDI and VAS on AAe with group as a between group factor?