Issue
print.step_adasyn() uses a lowercase label, inconsistent with every other step:
# R/adasyn.R
title <- "adasyn based on "
All other steps use proper casing:
| Step |
Label |
step_smote |
"SMOTE based on " |
step_bsmote |
"BorderlineSMOTE based on " |
step_adasyn |
"adasyn based on " ← wrong |
step_smotenc |
"SMOTENC based on " |
step_nearmiss |
"NEARMISS-1 based on " |
step_tomek |
"Tomek based on " |
step_rose |
"ROSE based on " |
step_upsample |
"Up-sampling based on " |
step_downsample |
"Down-sampling based on " |
Fix
title <- "ADASYN based on "
Issue
print.step_adasyn()uses a lowercase label, inconsistent with every other step:All other steps use proper casing:
step_smote"SMOTE based on "step_bsmote"BorderlineSMOTE based on "step_adasyn"adasyn based on "← wrongstep_smotenc"SMOTENC based on "step_nearmiss"NEARMISS-1 based on "step_tomek"Tomek based on "step_rose"ROSE based on "step_upsample"Up-sampling based on "step_downsample"Down-sampling based on "Fix