Learn R Programming

WRS2 (version 0.3-1)

rmanovab: A heteroscedastic one-way repeated measures bootstrap ANOVA for trimmed means.

Description

The rmanova 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.

Usage

rmanovab(y, groups, blocks, tr = 0.2, nboot = 599)
pairdepb(y, groups, blocks, tr = 0.2, nboot = 599)

Arguments

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.

Value

  • rmanovab an object of class "rmanovab" containing:
  • testvalue of the test statistic
  • critcritical value
  • callfunction call
  • pairdepb returns an object of class "mcp1" containing:
  • compinference for all pairwise comparisons
  • fnamesnames of the factor levels

References

Wilcox, R. (2012). Introduction to Robust Estimation and Hypothesis Testing (3rd ed.). Elsevier.

See Also

rmanova

Examples

Run this code
head(WineTasting)
rmanovab(WineTasting$Taste, WineTasting$Wine, WineTasting$Taster)

## post hoc
pairdepb(WineTasting$Taste, WineTasting$Wine, WineTasting$Taster)

Run the code above in your browser using DataLab