aligned.rank.transform {ART}R Documentation

Aligned Rank Transform procedure

Description

Aligned Rank Transform for Nonparametric Factorial Analysis

Usage

aligned.rank.transform(formula, data, perform.aov = TRUE, SS.type = c("III",
  "II", "I"), ...)

Arguments

formula

A formula indicating the model to be fitted.

data

A data frame containing the input data. The name of the columns should match the names used in the user-specified formula of the model that will be fitted.

perform.aov

Optional: whether separate ANOVAs should be run on the Ranked aligned responses or not. In case it should not, only the ranked aligned responses will be returned. Defaults to TRUE.

SS.type

A string indicating the type of sums of squares to be used in the ANOVA on the aligned responses. Must be one of "I", "II", "III". If perform.aov was set to FALSE, the value of SS.type will be ignored. Please note SS types coincide when the design is balanced (equal number of observations per cell) but differ otherwise. Refer to Shaw and Mitchell-Olds (1993) or Fox (1997) for further reading and recomentations on how to conduct ANOVA analyses with unbalanced designs.

...

Other arguments passed to lm when computing effect estimates via ordinary least squares for the alignment.

Details

The function computes a separate aligned response variable for each effect of an user-specified model, transform it into a ranking, and applies a separate ANOVA to every resulting ranked aligned response to check the significance of the corresponding effect.

Value

A tagged list with the following elements:

Author(s)

Pablo J. Villacorta Iglesias

References

Higgins, J. J., Blair, R. C. and Tashtoush, S. (1990). The aligned rank transform procedure. Proceedings of the Conference on Applied Statistics in Agriculture. Manhattan, Kansas: Kansas State University, pp. 185-195.

Higgins, J. J. and Tashtoush, S. (1994). An aligned rank transform test for interaction. Nonlinear World 1 (2), pp. 201-211.

Mansouri, H. (1999). Aligned rank transform tests in linear models. Journal of Statistical Planning and Inference 79, pp. 141 - 155.

Wobbrock, J.O., Findlater, L., Gergle, D. and Higgins, J.J. (2011). The Aligned Rank Transform for nonparametric factorial analyses using only ANOVA procedures. Proceedings of the ACM Conference on Human Factors in Computing Systems (CHI '11). New York: ACM Press, pp. 143-146.

Higgins, J.J. (2003). Introduction to Modern Nonparametric Statistics. Cengage Learning.

Shaw, R.G. and Mitchell-Olds, T. (1993). Anova for Unbalanced Data: An Overview. Ecology 74, 6, pp. 1638 - 1645.

Fox, J. (1997). Applied Regression Analysis, Linear Models, and Related Methods. SAGE Publications.

ARTool R package, for full models only. http://cran.r-project.org/package=ARTool

See Also

lm

Examples

# Input data contained in the Higgins1990-Table1.csv file distributed with ARTool
	# The data were used in the 1990 paper cited in the References section
	data(higgins1990, package = "ART");
# Two-factor full factorial model that will be fitted to the data
art.results = aligned.rank.transform(Response ~ Row * Column, data = data.higgins1990);
print(art.results$aligned, digits = 4);
print(art.results$significance);

[Package ART version 1.0 Index]