psychotools (version 0.5-1)

labels<-: Set Labels

Description

A generic function for setting labels for an object.

Usage

labels(object) <- value

Arguments

object

an object.

value

an object.

Examples

Run this code
# NOT RUN {
## method for "paircomp" data
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)))
labels(pc)
labels(pc) <- c("ah", "be", "ce")
pc
# }

Run the code above in your browser using DataCamp Workspace