rbind Data Frames by Column Index in R (Example) | Ignore Variable Names | setNames & names Function

Published: 12 October 2021
on channel: Statistics Globe
733
20

How to ignore variable names when applying the rbind() function in the R programming language. More details: https://statisticsglobe.com/rbind-dat...
R code of this video:

data1 <- data.frame(x1 = 1:5, # Create first data frame
x2 = letters[1:5])

data2 <- data.frame(y1 = 5:1, # Create second data frame
y2 = letters[5:1])

data_all <- rbind(data1, data2) # rbind returns error message

data_all <- rbind(data1, # Rename columns & rbind
setNames(data2, names(data1)))

Follow me on Social Media:
Facebook – Statistics Globe Page:   / statisticsglobecom  
Facebook – Group for Discussions & Questions:   / statisticsglobe  
LinkedIn – Statistics Globe Page:   / statisticsglobe  
LinkedIn – Group for Discussions & Questions:   / 12555223  
Twitter:   / joachimschork  

Music by bensound.com


Watch video rbind Data Frames by Column Index in R (Example) | Ignore Variable Names | setNames & names Function online, duration hours minute second in high quality that is uploaded to the channel Statistics Globe 12 October 2021. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 733 times and liked it 20 visitors.