View source: R/combine_data_frames.R
combine_data_frames | R Documentation |
This function takes in multiple data frames and combines them into a single data frame. Missing columns and rows between data frames are filled with NA
values.
combine_data_frames(...)
... |
The data frames to combine |
A combined data frame
a <- data.frame(id = 1:3, name = c("Alice", "Bob", "Charlie"))
b <- data.frame(id = 4:6, age = c(25, 30, 35))
combine_data_frames(a,b)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.