setRownames | R Documentation |
This function sets new row names for a given data frame or matrix.
setRownames(object, newRownames)
object |
A data frame or matrix. |
newRownames |
A character vector specifying the new row names. |
The data frame or matrix with updated row names.
# Set new row names for a data frame
df <- data.frame(A = c(1, 2, 3), B = c(4, 5, 6))
setRownames(df, c("row1", "row2", "row3"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.