compare_tibble_rows | R Documentation |
Compare two tibbles for equality or containment.
compare_tibble_rows(x, y, op = c("equal", "contained_in"))
x |
A tibble with unique rows. |
y |
A tibble with unique rows. |
op |
Name of opertaion. |
If op == "equal"
, returns a boolean indicating if x
and
y
have the same rows, ignoring the row order. If
op == "contained_in"
, returns a boolean indicating if all rows in
x
are contained in the rows of y
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.