Competency in fundamental movement skills (FMS) are seen as the “building blocks” for lifelong physical activity and long-term athlete development (LTAD).
Strength, fitness and perceived movement skills competence theorized to be key moderators or mediates of that relationship.
Hypotheses
We collected strength (IMTP peak and relative peak force & CMJ height) and movement skill Dragon Challenge) for 85 youth athletes (10 - 15 years of age, 59 female):
Strength would be associated with movement skill (Pearson’s correlations with lower 95% CI greater than 0.1)
Sex and maturation may be important confounding variables in the analysis.
Code
A simple Pearson’s correlation will provide the strength of the relationship between predictor (strength) and outcome movement skill:
Analysis of Variance Table
Model 1: dragon_score ~ relative_strength_imtp
Model 2: dragon_score ~ relative_strength_imtp + sex
Res.Df RSS Df Sum of Sq F Pr(>F)
1 83 810.67
2 82 797.15 1 13.519 1.3907 0.2417
Let’s look at absolute strength
Simple Pearson’s correlation?
cor.test(data$peak_force_imtp, data$dragon_score)
Pearson's product-moment correlation
data: data$peak_force_imtp and data$dragon_score
t = 0.97674, df = 83, p-value = 0.3315
alternative hypothesis: true correlation is not equal to 0
95 percent confidence interval:
-0.109000 0.312622
sample estimates:
cor
0.1066005
But let’s plot it by sex
Notice how we have opposing slopes.
Run models
Adding sex (keeping slopes fixed)
Adding force x sex interaction (modeling different slopes for boys and girls)