compare_tibble_rows: Compare two tibbles.

View source: R/utils.R

compare_tibble_rowsR Documentation

Compare two tibbles.

Description

Compare two tibbles for equality or containment.

Usage

compare_tibble_rows(x, y, op = c("equal", "contained_in"))

Arguments

x

A tibble with unique rows.

y

A tibble with unique rows.

op

Name of opertaion.

Value

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.


Yu-Group/simChef documentation built on March 25, 2024, 3:22 a.m.