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
- x
The first data frame.
- y
The second data frame.
- 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.