R – Change Column Names Of The DataFrame - Spark By {Examples}
Maybe your like
How to change the column names in RDataFrame (data.frame). Changing the column names in R is pretty easy, you can do it in three methods. We can able to change single or all column names using colnames(). Next, we are using setNames() which is used to change all the column names in a dataframe. Finally, we are using rename() method with the %>% operator to change all the column names.
Advertisements1 Quick Examples of Changing Column Names
Following are quick examples of changing column names in R DataFrame.
# Create dataframe #change the column names to c1,c2,c3,c4 and c5 using colnames() colnames(my_dataframe) = c('c1','c2','c3','c4','c5') #change second column to c2 colnames(my_dataframe)[2] ="c2" #change fifth column to c5 colnames(my_dataframe)[5] ="c5" #change the column names to c1,c2,c3,c4 and c5 using setNames() print(setNames(my_dataframe, c('c1','c2','c3','c4','c5'))) #load the dplyr library library("dplyr") #change the column names to c1,c2,c3,c4 and c5 using rename() print(my_dataframe %>% rename(c1 = id,c2 = pages,c3 = name,c4 = chapters,c5 = price))Let’s create the dataframe with five rows and five columns.
# Create dataframe my_dataframe=data.frame(id=c(11,22,33,44,55), pages=c(32,45,33,22,56), name=c("spark","python","R","java","jsp"), chapters=c(76,86,11,15,7), price=c(144,553,321,567,890)) # Display the dataframe print(my_dataframe)Output:

We can see that the column names are: id, pages, name, chapters, and price. Let’s change the column names for this dataframe.
2. Changing Column Names in R using colnames()
colnames() is the method available in R that is used to change all column names present in the dataframe. It takes
Syntax:
#Syntax for colnames to rename all columns colnames(my_dataframe) = c('new_column_name',...........)where,
- my_dataframe is the input dataframe
- new_column_name is the new column name that replaces the old column name
Example:
Let’s change the column names of the above dataframe to c1,c2,c3,c4, and c5.
#Change the column names to c1,c2,c3,c4 and c5 using colnames() colnames(my_dataframe) = c('c1','c2','c3','c4','c5') #Display the dataframe print(my_dataframe)Output:
c1 c2 c3 c4 c5 1 11 32 spark 76 144 2 22 45 python 86 553 3 33 33 R 11 321 4 44 22 java 15 567 5 55 56 jsp 7 890We can see that column names are changed.
If we want to change a particular column by index, then we have to specify the index of the column. In R, indexing starts with 1.
Syntax:
#Syntax to rename single column wth colnames() by column index. colnames(my_dataframe)[index_pos] ="new_column_name"where index_pos represent the column index.
Example:
In this example, we will change the second column to c2 and the fifth column to c5.
# Create dataframe my_dataframe=data.frame(id=c(11,22,33,44,55), pages=c(32,45,33,22,56), name=c("spark","python","R","java","jsp"), chapters=c(76,86,11,15,7), price=c(144,553,321,567,890)) #change second column to c2 colnames(my_dataframe)[2] ="c2" #change fifth column to c5 colnames(my_dataframe)[5] ="c5" #display the dataframe print(my_dataframe)Output:
id c2 name chapters c5 1 11 32 spark 76 144 2 22 45 python 86 553 3 33 33 R 11 321 4 44 22 java 15 567 5 55 56 jsp 7 890We can see that the second and fifth column names are changed.
3. Change Column Names using setNames()
setNames() is the method available in R, which is used to change all the columns present in the dataframe.
Syntax:
#Syntax for setNames() to change the column names setNames(my_dataframe, c('new_column_name',...........))where,
- my_dataframe is the input dataframe
- new_column_name is the new column name that replaces the old column name
Example:
Let’s change the columns of the above dataframe to c1,c2,c3,c4, and c5.
# Create dataframe my_dataframe=data.frame(id=c(11,22,33,44,55), pages=c(32,45,33,22,56), name=c("spark","python","R","java","jsp"), chapters=c(76,86,11,15,7), price=c(144,553,321,567,890)) # Change the column names to c1,c2,c3,c4 and c5 using setNames() print(setNames(my_dataframe, c('c1','c2','c3','c4','c5')))Output:
c1 c2 c3 c4 c5 1 11 32 spark 76 144 2 22 45 python 86 553 3 33 33 R 11 321 4 44 22 java 15 567 5 55 56 jsp 7 890We can see that column names are changed.
4. Change Column Names using dplyr rename()
rename() is the method available in the dplyr package, which is used to change the particular columns present in the dataframe. The operator %>% is used to load the renamed column names to the dataframe. At a time it will change single or multiple column names. But we have to load the dplyr library in order to use this method.
Syntax:
#Syntax to load the dplyr library library("dplyr") #Syntax to change column names using rename() my_dataframe %>% rename(new_column_name = old_column_name,...........)where,
- my_dataframe is the input dataframe
- new_column_name is the new column name that replaces the old_column_name
Example:
Let’s change the columns of the above dataframe to c1,c2,c3,c4, and c5.
#Load the dplyr library library("dplyr") #Change the column names to c1,c2,c3,c4 and c5 using rename() print(my_dataframe %>% rename(c1 = id,c2 = pages,c3 = name,c4 = chapters,c5 = price))Output:
c1 c2 c3 c4 c5 1 11 32 spark 76 144 2 22 45 python 86 553 3 33 33 R 11 321 4 44 22 java 15 567 5 55 56 jsp 7 890We can see that column names are changed.
Conclusion
In this article, we have seen different ways of changing the column names in R, using colnames(), rename(), and setNames() methods. To change single or multiple columns use colnames() and rename() methods.
Related Articles
- Select Columns by Name in R?
- Select Columns by Index Position in R
- R select() Function from dplyr – Usage with Examples
- R Filter DataFrame by Column Value
- Reorder Columns of DataFrame in R
- How to Delete File or Directory in R?
- How to Rename File in R? Using file.rename()
- R Vector Explained with Examples
References
- R dataframe
- colnames()
- setNames()
Tag » Add Column Name To Data Frame R
-
8.4 Dataframe Column Names - YaRrr! The Pirate's Guide To R
-
Changing Column Names Of A Data Frame - Stack Overflow
-
Change Column Name Of A Given DataFrame In R - GeeksforGeeks
-
Add Header To Data Frame In R (Example) - Statistics Globe
-
How To Add Name To Data Frame Columns In R? - Tutorialspoint
-
How To Add A Column To A Data Frame In R (With Examples)
-
Rename Data Frame Columns In R - Datanovia
-
How To Set Column Names In R Code Example - Code Grepper
-
R Data Frame: How To Create, Append, Select & Subset - Guru99
-
How To Add A Column To A Dataframe In R With Tibble & Dplyr
-
Addressing Data – Programming With R
-
Row And Column Names - R
-
How To Add A Column To A DataFrame In R (with 18 Code Examples)
-
Add Columns To A Data Frame — Add_column • Tibble