Learn R Programming

joinspy (version 0.7.3)

full_join_spy: Full Join with Diagnostics

Description

Performs a full join and automatically prints diagnostic information.

Usage

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

Value

The joined data frame with a "join_report" attribute.

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.

See Also

left_join_spy(), join_spy(), last_report()