compare_tibble_rows | R Documentation |
Compare two tibbles for equality or containment.
compare_tibble_rows(
x,
y,
op = c("equal", "contained_in"),
vary_param_names = NULL
)
x |
A tibble with unique rows. |
y |
A tibble with unique rows. |
op |
Name of opertaion. |
vary_param_names |
Character vector of parameter names that are varied across in the Experiment. |
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.