Comparison#
- class versus.Comparison#
Shared interface for backend-specific comparison objects.
versus.compare()returns concrete subclasses of this type. DuckDB comparisons expose DuckDB relations; Spark comparisons expose Spark DataFrames. The helper method names stay the same across backends.
Return rows where one column differs between the inputs. |
|
Return a stacked view of value differences for multiple columns. |
|
Return a wide view of differing rows with split columns. |
|
Return a long view of differing rows stacked by input. |
|
Return rows from one input that differ in the selected columns. |
|
Return rows from one input whose keys are missing in the other. |
|
Return unmatched rows from both inputs. |
|
Summarize which difference categories are present. |
|
Release backend-specific cached state for the comparison. |