In this shot, we will look at combining two or more data frames in R.
The rbind()
function combines data frames vertically in R.
rbind(dataframe1, dataframe2)
The rbind()
function can take two or more parameter values representing the respective data frames to be combined vertically.
The rbind()
function returns vertically combined data frames.
# creating the 1st data frameMy_Data_Frame1 <- data.frame (Height = c("Tall", "Average", "short"),Body_structure = c("Meso", "Endo", "Ecto"),Age = c(35, 30, 45))# creating the 2nd data frameMy_Data_Frame2 <- data.frame (Height = c("Average", "Tall", "short"),Body_structure = c("Endo", "Endo", "Ecto"),Age = c(20, 30, 45))# combining the data framesNew_Data_Frame <- rbind(My_Data_Frame1, My_Data_Frame2)New_Data_Frame
My_Data_Frame1
, with three columns.My_Data_Frame2
, with three columns as well.My_Data_Frame1
and My_Data_Frame2
vertically using the rbind()
function. The output is assigned to another variable named New_Data_Frame
.New_Data_Frame
.