View source: R/examine-cardinalities.R
dm_examine_cardinalities | R Documentation |
This function returns a tibble with information about
the cardinality of the FK constraints.
The printing for this object is special, use as_tibble()
to print as a regular tibble.
dm_examine_cardinalities(
.dm,
...,
.progress = NA,
dm = deprecated(),
progress = deprecated()
)
.dm |
A |
... |
These dots are for future extensions and must be empty. |
.progress |
Whether to display a progress bar, if |
dm , progress |
Uses examine_cardinality()
on each foreign key that is defined in the dm
.
A tibble with the following columns:
child_table
child table,
child_fk_cols
foreign key column(s) in child table as list of character vectors,
parent_table
parent table,
parent_key_cols
key column(s) in parent table as list of character vectors,
cardinality
the nature of cardinality along the foreign key.
Other cardinality functions:
examine_cardinality()
dm_nycflights13() %>%
dm_examine_cardinalities()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.