check_rbind: Check Row Bind
Description
Checks whether a data frame has the same columns of the same classes as a second data frame which means they can be rbind
ed without a problem.
Usage
check_rbind(x, y, exclusive = TRUE, order = FALSE,
x_name = substitute(x), y_name = substitute(y), error = TRUE)
Arguments
exclusive
A flag indicating whether other columns are not permitted.
order
A flag indicating whether the columns have to occur in the same order.
x_name
A string of the name of the object x.
y_name
A string of the name of the object y.
error
A flag indicating whether to throw an informative error or immediately generate an informative message if the check fails.
Value
An invisible copy of x (if it doesn't throw an error).
Examples
Run this code# NOT RUN {
check_rbind(datasets::mtcars, datasets::mtcars)
# }
Run the code above in your browser using DataLab