Some feature warnings currently use logging.warning(), but some (e.g. below) use bare print(); it could be good if all info messages use logging.warning or logging.info, so that the messages can be disabled or filtered
|
print(f"Warning: Not enough samples ({len(y)} {pp_text}) to compute SampEn at multiple scales") |
|
return {'out': np.nan} |
Some feature warnings currently use
logging.warning(), but some (e.g. below) use bareprint(); it could be good if all info messages uselogging.warningorlogging.info, so that the messages can be disabled or filteredpyhctsa/pyhctsa/operations/entropy.py
Lines 268 to 269 in fa7f366