In this shot, we take a look at combining two or more data frames horizontally in R.
The cbind()
function combines data frames horizontally in R.
cbind(dataframe1, dataframe2)
The cbind()
function takes two or more parameter values that represent the respective data frames to be combined horizontally.
The cbind()
function returns horizontally 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 <- cbind(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
horizontally using the cbind()
function. The output is assigned to another variable, New_Data_Frame
.New_Data_Frame
.