combine_data_frames: Combine multiple data frames into a single data frame

View source: R/combine_data_frames.R

combine_data_framesR Documentation

Combine multiple data frames into a single data frame

Description

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.

Usage

combine_data_frames(...)

Arguments

...

The data frames to combine

Value

A combined data frame

Examples

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)

jazznbass/wmisc documentation built on Oct. 29, 2024, 5:42 p.m.