Last chance! 50% off unlimited learning
Sale ends in
Puzzle completion time example data from Hays (1994).
A data frame with 48 observations on 3 variables.
Puzzle completion time, in minutes
the subject identifier
shape of the puzzle (round or square)
color content of the puzzle (monochromatic or color)
Hays (1994; section 13.21, table 13.21.2, p. 570) describes a experiment wherein 12 participants complete four puzzles each. Puzzles could be either square or round, and either monochromatic or in color. Each participant completed every combination of the two factors.
# NOT RUN {
data(puzzles)
## classical ANOVA
## Both color and shape are significant, interaction is not
classical <- aov(RT ~ shape*color + Error(ID/(shape*color)), data=puzzles)
summary(classical)
## Bayes Factor
## Best model is main effects model, no interaction
anovaBF(RT ~ shape*color + ID, data = puzzles, whichRandom = "ID", progress=FALSE)
# }
Run the code above in your browser using DataLab