Values separated by spaces:
Df Sum Sq Mean Sq F value Pr(>F)
group 2 7434 3717 7.978 0.0019 **
Residuals 27 12579 466
---
Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Tukey multiple comparisons of means
95% family-wise confidence level
Fit: aov(formula = density ~ group, data = rats)
$group
diff lwr upr p adj
Lowjump-Control 11.4 -12.533957 35.33396 0.4744032
Highjump-Control 37.6 13.666043 61.53396 0.0016388
Highjump-Lowjump 26.2 2.266043 50.13396 0.0297843
Assumptions:
Find median of all bone densities, regardless of group
Count up how many observations in each group above or below overall median
Test association between group and above/below
Use median_test (over).
oneway.test as shown (for illustration):
One-way analysis of means (not assuming equal variances)
data: density and group
F = 8.8164, num df = 2.000, denom df = 17.405, p-value = 0.002268
PMCMRplus. Install first. Control Lowjump
Lowjump 0.5417 -
Highjump 0.0056 0.0120
May find that your version of gamesHowellTest requires group to be a genuine factor. In that case, do this:
For two or more samples:
Comments