VOOZH about

URL: https://www.geeksforgeeks.org/r-language/how-to-add-multiple-columns-to-a-dataframe-in-r/

⇱ How to add multiple columns to a data.frame in R? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to add multiple columns to a data.frame in R?

Last Updated : 23 Jul, 2025

In R Language adding multiple columns to a data.frame can be done in several ways. Below, we will explore different methods to accomplish this, using some practical examples. We will use the base R approach, as well as the dplyr package from the tidyverse collection of packages.

Understanding Data Frames in R

The data frame in the R context is a two-dimensional table or an array-like structure in which all the columns can possess different types of values such as numeric, character, factors, etc. Data frames are crucial in the process of data manipulation in R and work is made easier when carrying out operations on data sets.

Method 1: Using the $ Operator

You can add new columns to a data.frame by directly assigning values to new column names.

Output:

 ID Name
1 1 Alice
2 2 Bob
3 3 Charlie
4 4 David
5 5 Eve

ID Name Age Salary
1 1 Alice 25 50000
2 2 Bob 30 55000
3 3 Charlie 35 60000
4 4 David 40 65000
5 5 Eve 45 70000

Method 2: Using cbind()

The cbind() function can be used to combine multiple vectors or data frames by column.

Output:

 ID Name Age Salary
1 1 Alice 25 50000
2 2 Bob 30 55000
3 3 Charlie 35 60000
4 4 David 40 65000
5 5 Eve 45 70000

Method 3: Using within()

The within() function allows for convenient modification of a data.frame by adding or transforming columns.

Output:

 ID Name Salary Age
1 1 Alice 50000 25
2 2 Bob 55000 30
3 3 Charlie 60000 35
4 4 David 65000 40
5 5 Eve 70000 45

Using dplyr from the tidyverse

The dplyr package provides a more readable and efficient way to manipulate data frames.

Method 1: Using mutate()

The mutate() function is used to add new variables and preserve existing ones.

Output:

 ID Name Age Salary
1 1 Alice 25 50000
2 2 Bob 30 55000
3 3 Charlie 35 60000
4 4 David 40 65000
5 5 Eve 45 70000

Method 2: Using bind_cols()

The bind_cols() function combines data frames by their columns.

Output:

 ID Name Age Salary
1 1 Alice 25 50000
2 2 Bob 30 55000
3 3 Charlie 35 60000
4 4 David 40 65000
5 5 Eve 45 70000

Conclusion

Adding multiple columns to a data.frame in R can be done using various methods, each suited to different needs and preferences. Base R provides functions like $, cbind(), and within(), while the dplyr package from the tidyverse offers mutate() and bind_cols() for more readable and efficient code. Choosing the right method depends on your specific use case and coding style.

Comment
Article Tags:

Explore