
Last chance! 50% off unlimited learning
Sale ends in
Given the results from a simulation with runSimulation
form an ANOVA table (without
p-values) with effect sizes based on the eta-squared statistic. These results provide approximate
indications of observable simulation effects, therefore these ANOVA-based results are generally useful
as exploratory rather than inferential tools.
SimAnova(formula, dat, subset = NULL, rates = TRUE)
an object returned from runSimulation
of class 'SimDesign'
an optional argument to be passed to subset
with the same name. Used to
subset the results object while preserving the associated attributes
Sigal, M. J., & Chalmers, R. P. (2016). Play it again: Teaching statistics with Monte
Carlo simulation. Journal of Statistics Education, 24
(3), 136-156.
10.1080/10691898.2016.1246953
# NOT RUN {
data(BF_sim)
# all results (not usually good to mix Power and Type I results together)
SimAnova(alpha.05.F ~ (groups_equal + distribution)^2, BF_sim)
# only use anova for Type I error conditions
SimAnova(alpha.05.F ~ (groups_equal + distribution)^2, BF_sim, subset = var_ratio == 1)
# run all DVs at once using the same formula
SimAnova(~ groups_equal * distribution, BF_sim, subset = var_ratio == 1)
# }
Run the code above in your browser using DataLab