labels: Retrieve or modify the row or column labels.
Description
These functions allow the row or column labels of a tabular
object to be retrieved or modified.
Usage
rowLabels(x)
rowLabels(x) <- value
colLabels(x)
colLabels(x) <- value
# S3 method for tabularRowLabels
[(x, i, j, ..., drop = FALSE)
# S3 method for tabularColLabels
[(x, i, j, ..., drop = FALSE)
Value
rowLabels and the corresponding subsetting method
return an object of class "tabularRowLabels".
colLabels and the corresponding subsetting method
return an object of class "tabularColLabels".
The assignment functions return "tabular" objects.
Arguments
x
A "tabular", "tabularRowLabels" or "tabularColLabels" object.
value
A replacement
i, j, ..., drop
Arguments used for subsetting the labels. See Details below.
Details
Subsetting the row labels does not allow the number of rows
to be changed; likewise, subsetting the column labels does
not allow the number of columns to be changed. To change both,
subset the original "tabular" object.