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 without registration, duration hours minute second in high quality. This video was added by user Statistics Globe 12 October 2021, don't forget to share it with your friends and acquaintances, it has been viewed on our site 733 once and liked it 20 people.