Skip to content

Commit

Permalink
Fix mixup in dataset names and colors in feature drift (#2644)
Browse files Browse the repository at this point in the history
* Fix mixup in dataset names and colors in feature drift
  • Loading branch information
noamzbr committed Jul 25, 2023
1 parent bd95147 commit de04894
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deepchecks/utils/abstracts/feature_drift.py
Expand Up @@ -81,7 +81,7 @@ def _calculate_feature_drift(
ignore_na=self.ignore_na,
min_samples=self.min_samples,
with_display=with_display,
dataset_names=(test_dataframe_name, train_dataframe_name)
dataset_names=(train_dataframe_name, test_dataframe_name)
)

if value == 'not_enough_samples':
Expand Down

0 comments on commit de04894

Please sign in to comment.