DataFrameComparison.num_rows_joined_unequal#
- DataFrameComparison.num_rows_joined_unequal(*subset: str) int[source]#
The number of rows of both data frames that can be joined and have at least one mismatching value across any column in subset.
- Parameters:
subset – The columns to check for mismatches. If not provided, all common columns are used.
- Returns:
The number of rows that can be joined and have at least one mismatching value across the specified columns.
- Raises:
ValueError – If any of the provided columns are not common columns.