R/compare_df_cols.R
compare_df_cols_same.Rd
Check whether a set of data.frames are row-bindable. Calls
compare_df_cols()
and returns TRUE if there are no mis-matching rows. `
compare_df_cols_same( ..., bind_method = c("bind_rows", "rbind"), verbose = TRUE )
... | A combination of data.frames, tibbles, and lists of data.frames/tibbles. The values may optionally be named arguments; if named, the output column will be the name; if not named, the output column will be the data.frame name (see examples section). |
---|---|
bind_method | What method of binding should be used to determine
matches? With "bind_rows", columns missing from a data.frame would be
considered a match (as in |
verbose | Print the mismatching columns if binding will fail. |
TRUE
if row binding will succeed or FALSE
if it will
fail.
Other Data frame type comparison:
compare_df_cols()
,
describe_class()
#> [1] TRUE#> [1] TRUE#> [1] TRUE#> column_name ..1 ..2 #> 1 A numeric <NA> #> 2 B <NA> numeric#> [1] FALSE