Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

r change row names of a dataframe

# Basic syntax:
rownames(your_dataframe) <- new_names
# Note, the new_names has to be the same length as the dataframe

# Example usage:
# Say you want to set the rownames to be numbered 1-end:
rownames(your_dataframe) <- 1:nrow(your_dataframe)
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #change #row #names #dataframe
ADD COMMENT
Topic
Name
6+8 =