Message399995
[Steven]
> Thoughts?
1) Document that results are undefined if a NaN is present in the data.
2) Add function to strip NaNs from the data:
def remove_nans(iterable):
"Remove float('NaN') and other objects not equal to themselves"
return [x for x in iterable if x == x] |
|
Date |
User |
Action |
Args |
2021-08-20 21:37:26 | rhettinger | set | recipients:
+ rhettinger, mark.dickinson, eric.smith, steven.daprano, DavidMertz, maheshwark97, dcasmr, jfine2358, iritkatriel |
2021-08-20 21:37:26 | rhettinger | set | messageid: <1629495446.36.0.117007738638.issue33084@roundup.psfhosted.org> |
2021-08-20 21:37:26 | rhettinger | link | issue33084 messages |
2021-08-20 21:37:26 | rhettinger | create | |
|