I want to analyse the distance covered by players per minute (TD_min) among player role and playing phase (possession, non possession). Main question is: does possession phase influence distance covered by players in different role? IE, does distance covered by DC differs according to phase? The same for CC etc
I have the following mixed model with interaction, but I am not sure how to interpret it
TD_min ~ Fase * Ruolo + (1 | Partita) + (1 | Giocatore)
Ruolo is categorical (DC, FB, CC, ES, AT) and Fase is categorical (P, NP). Results are compared against DC and NP.
Results are the following
Formula: TD_min ~ Fase * Ruolo + (1 | Partita) + (1 | Giocatore)
Data: data
AIC BIC logLik deviance df.resid
3994.6 4050.3 -1984.3 3968.6 525
Scaled residuals:
Min 1Q Median 3Q Max
-3.4758 -0.6044 -0.0646 0.6251 3.9107
Random effects:
Groups Name Variance Std.Dev.
Partita (Intercept) 56.75 7.533
Giocatore (Intercept) 29.22 5.405
Residual 73.21 8.556
Number of obs: 538, groups: Partita, 34; Giocatore, 21
Fixed effects:
Estimate Std. Error t value
(Intercept) 140.7730 2.9531 47.670
FaseP -20.7943 1.4674 -14.171
RuoloFB 5.1787 4.2384 1.222
RuoloCC 24.0475 3.4692 6.932
RuoloES 5.4434 4.3090 1.263
RuoloAT 0.1933 5.1367 0.038
FaseP:RuoloFB 0.5874 2.1074 0.279
FaseP:RuoloCC 2.2702 1.9180 1.184
FaseP:RuoloES 14.8159 2.8730 5.157
FaseP:RuoloAT 18.6357 3.2812 5.679
Correlation of Fixed Effects:
(Intr) FaseP RuolFB RuolCC RuolES RuolAT FP:RFB FP:RCC FP:RES
FaseP -0.248
RuoloFB -0.563 0.173
RuoloCC -0.688 0.211 0.479
RuoloES -0.553 0.170 0.385 0.470
RuoloAT -0.465 0.143 0.324 0.396 0.324
FaseP:RulFB 0.173 -0.696 -0.249 -0.147 -0.119 -0.099
FaseP:RulCC 0.190 -0.765 -0.132 -0.276 -0.130 -0.109 0.533
FaseP:RulES 0.127 -0.511 -0.088 -0.108 -0.333 -0.073 0.356 0.391
FaseP:RulAT 0.111 -0.447 -0.077 -0.095 -0.076 -0.319 0.311 0.342 0.228
I am ok with interpreting the fixed models without interaction (ie from FaseP to RuoloAT), but am not sure how I can interpret the others? Also I don't know what the correlation of fixed effects means.
I found other similar questions but it's still unclear. Thanks