0

I performed the following mixed effect linear regression using lmer,

M1<- lmer(A.Moveis~D.utilizador+(1|Zona),data=d)

summary M1 gave me :

Linear mixed model fit by REML ['lmerMod']
Formula: A.Moveis ~ D.utilizador + (1 | Zona)
   Data: d

REML criterion at convergence: 257.5

Scaled residuals: 
    Min      1Q  Median      3Q     Max 
-1.1187 -0.7500 -0.3055  0.5125  2.7626 

Random effects:
 Groups   Name        Variance Std.Dev.
 Zona     (Intercept)   2.338   1.529  
 Residual             126.826  11.262  
Number of obs: 35, groups:  Zona, 4

Fixed effects:
             Estimate Std. Error t value
(Intercept)    13.306      2.898   4.592
D.utilizador  -15.914     11.112  -1.432

Correlation of Fixed Effects:
            (Intr)
D.utilizadr -0.706

I know that lme4 package don't give the p-value, but I would like to evaluate the significance of the fixed effects in the model output for my report.Is the t-value enough to evaluate the significance for a report?

Is there any statical tests I could run in order to test the significance of my model and of my fixed effect? I am sorry I am really new with linear regression and I am trying to understand.

Salome
  • 11
  • 2
  • 1
    Does this answer your question? [How to obtain the p-value (check significance) of an effect in a lme4 mixed model?](https://stats.stackexchange.com/questions/22988/how-to-obtain-the-p-value-check-significance-of-an-effect-in-a-lme4-mixed-mode) The discussion on that page and in information linked from there is important to consider, as the estimation of degrees of freedom in such models isn't straightforward. – EdM Aug 05 '21 at 12:57
  • Perfect thank you ! It definitively answer my question. – Salome Aug 05 '21 at 13:40

0 Answers0