powered by
Selection of subsets of objects to be compared and/or reordering of objects in "paircomp" data.
"paircomp"
# S3 method for paircomp reorder(x, labels, ...) # S3 method for paircomp subset(x, subset, select, ...)
an object of class "paircomp".
character or integer. Either a vector of (at least two) elements of labels(x) or an integer with their position. Partial string matching is enabled.
labels(x)
currently not implemented. (Should be a specification of subsets of subjects.)
currently not used.
The subset method currently just calls the reorder method.
subset
reorder
paircomp
pc <- paircomp(rbind( c(1, 1, 1), # a > b, a > c, b > c c(1, 1, -1), # a > b, a > c, b < c c(1, -1, -1), # a > b, a < c, b < c c(1, 1, 1))) reorder(pc, c("c", "a"))
Run the code above in your browser using DataLab