Performs a full join and automatically prints diagnostic information.
Arguments
- x
A data frame (left table).
- y
A data frame (right table).
- by
A character vector of column names to join by.
- verbose
Logical. If
TRUE(default), prints diagnostic summary.- .quiet
Logical. If
TRUE, suppresses all output (overridesverbose). Useful for silent pipeline operations. Uselast_report()to access the diagnostics afterward.- backend
Character or
NULL. The join backend to use. IfNULL(default), auto-detects from input class:data.tableinputs use data.table, tibble inputs use dplyr, otherwise base Rmerge(). Explicit values:"base","dplyr","data.table".- ...
Additional arguments passed to the underlying join function.