plyr (version 1.8.4)

rbind.fill: Combine data.frames by row, filling in missing columns.

Description

rbinds a list of data frames filling missing columns with NA.

Usage

rbind.fill(...)

Arguments

...

input data frames to row bind together. The first argument can be a list of data frames, in which case all other arguments are ignored. Any NULL inputs are silently dropped. If all inputs are NULL, the output is NULL.

Value

a single data frame

Details

This is an enhancement to rbind that adds in columns that are not present in all inputs, accepts a list of data frames, and operates substantially faster.

Column names and types in the output will appear in the order in which they were encountered.

Unordered factor columns will have their levels unified and character data bound with factors will be converted to character. POSIXct data will be converted to be in the same time zone. Array and matrix columns must have identical dimensions after the row count. Aside from these there are no general checks that each column is of consistent data type.

See Also

Other binding functions: rbind.fill.matrix

Examples

Run this code
# NOT RUN {
rbind.fill(mtcars[c("mpg", "wt")], mtcars[c("wt", "cyl")])
# }

Run the code above in your browser using DataCamp Workspace