View source: R/join_many_to_many_inspect.R
join_many_to_many_inspect | R Documentation |
Inspect which rows cause a many-to-many warning
join_many_to_many_inspect(x, y, by = NULL, show_rows = c("none", "x", "y"))
x |
see |
y |
see |
by |
see |
show_rows |
character, show the rows which cause the problem in table |
tbl with number of multiple observed joining keys, or rows which cause the problem in table x
or y
x <- tibble(key = c(1, 1:3),
value = letters[key])
y <- tibble(key = c(1,1,1,1,2),
value2 = 1:5)
x %>% inner_join(y)
join_many_to_many_inspect(x = x, y = y, show_rows = "none")
join_many_to_many_inspect(x = x, y = y, show_rows = "x")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.