rmanovab | R Documentation |
The rmanovab
function computes a bootstrap version of the one-way repeated measures ANOVA for the trimmed means. Homoscedasticity assumption not required. Corresponding post hoc tests can be performed using pairdepb
.
rmanovab(y, groups, blocks, tr = 0.2, nboot = 599, ...)
pairdepb(y, groups, blocks, tr = 0.2, nboot = 599, ...)
y |
a numeric vector of data values (response). |
groups |
a vector giving the group of the corresponding elements of y. |
blocks |
a vector giving the block of the corresponding elements of y. |
tr |
trim level for the mean. |
nboot |
number of bootstrap samples. |
... |
currently ignored. |
rmanovab
an object of class "rmanovab"
containing:
test |
value of the test statistic |
crit |
critical value |
call |
function call |
pairdepb
returns an object of class "mcp2"
containing:
comp |
inference for all pairwise comparisons |
fnames |
names of the factor levels |
Wilcox, R. (2012). Introduction to Robust Estimation and Hypothesis Testing (3rd ed.). Elsevier.
rmanova
set.seed(123)
rmanovab(WineTasting$Taste, WineTasting$Wine, WineTasting$Taster, nboot = 300)
## post hoc
set.seed(123)
pairdepb(WineTasting$Taste, WineTasting$Wine, WineTasting$Taster, nboot = 300)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.