We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b6ac5cc commit 1739302Copy full SHA for 1739302
ema_workbench/analysis/feature_scoring.py
@@ -66,9 +66,7 @@ def _prepare_experiments(experiments):
66
for column in x_nominal_columns:
67
if np.unique(x[column]).shape == (1,):
68
x = x.drop(column, axis=1)
69
- _logger.info(
70
- ("{} dropped from analysis " "because only a single category").format(column)
71
- )
+ _logger.debug(f"{column} dropped from analysis because it has only a single category")
72
else:
73
x[column] = x[column].astype("category").cat.codes
74
0 commit comments