Description Usage Arguments Details Examples
Provides verbose information about rows matching when joining dataframes
using dplyr join verbs. It prints a summary of the number of rows in x that
have no match in y, rows in x that have only one match in
y and rows in x that have more than one match in y.
1 |
x, |
y tbls to join. |
... |
Any argument admitted by the join verbs of |
info_join admits the same arguments as the join verbs
(left_join, inner_join, full_join,
anti_join and
semi_join) in dplyr, and prints a summary of rows matching: the
number of rows in x that have no match in y, rows in x
that have only one match in y and rows in x that have more than
one match in y, and symmetrically for the rows in y with no,
one, or more than one match in x.
It is useful to anticipate the results of the join action, in particular to
control the dimension of the output dataframe. It allows, for example, to prevent unvoluntary
mistakes upon joining x and y, when the user may be unaware of
duplicated rows matching in y which results in more rows than in
$x$.
1 2 3 4 5 6 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.