
Assign a Specific Row/Column to the Column/Row Names
assign_colnames(x, ...)assign_rownames(x, ...)
# S4 method for data.frame
assign_rownames(x, column, remove = TRUE)
# S4 method for data.frame
assign_colnames(x, row, remove = TRUE)
A data.frame
.
A data.frame
.
Currently not used.
A length-one numeric
vector specifying the column number
that is to become the row names.
A logical
scalar: should the specified row/column be removed
after making it the column/row names?
A length-one numeric
vector specifying the row number that is
to become the column names.
N. Frerebeau
X <- data.frame(
x = 1:5,
y = 6:10,
z = LETTERS[1:5]
)
## Assign column to row names
(Y <- assign_rownames(X, 3))
## Append row names to data.frame
(Z <- append_rownames(Y))
Run the code above in your browser using DataLab