Skip to contents

Performs a full join and automatically prints diagnostic information.

Usage

full_join_spy(x, y, by, verbose = TRUE, .quiet = FALSE, ...)

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 (overrides verbose). Useful for silent pipeline operations. Use last_report() to access the diagnostics afterward.

...

Additional arguments passed to the underlying join function.

Value

The joined data frame with a "join_report" attribute.