TITLE(dimnames @@ Array Labels)
USAGE(
dimnames(x)
dimnames(x) <- nlist
)
ALIAS(dimnames)
ALIAS(dimnames<-)
VALUE(
This function obtains the list of extent labels of
the array given as its argument.
The second form above can be used to set these labels.
)
SEEALSO(
LANG(LINK(matrix)), LANG(LINK(rownames)), LANG(LINK(colnames)).
)
EXAMPLES(
# simple versions of rownames and colnames
# could be defined as follows
rownames0 <- function(x) dimnames(x)[1]
colnames0 <- function(x) dimnames(x)[2]
)
