View source: R/slice-unmatched.R
slice_unmatched | R Documentation |
Get rows in only one table
slice_unmatched(comparison, table)
slice_unmatched_both(comparison)
comparison |
The output of |
table |
One of |
slice_unmatched() |
The table identified by |
slice_unmatched_both() |
The output of |
comp <- compare(example_df_a, example_df_b, by = car)
comp |> slice_unmatched("a")
comp |> slice_unmatched("b")
# slice_unmatched(comp, "a") output is the same as
example_df_a |> dplyr::anti_join(example_df_b, by = comp$by$column)
comp |> slice_unmatched_both()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.