Open kylewhite21 opened 4 weeks ago
You can probably do this: S.select(S.is_nan(s), 0, s)
although we may consider adding a fill_nan
for convenience.
Ok, thanks for the quick reply as usual. I'm good with this. You're welcome to close it unless you want to use it to track work for fill_nan
.
Are there any recommendations on how to deal with Series
NaN
values? I'd like to usefill_missing/2
orcoalesce
, but they seem to ignoreNaN
. Even if it were possible to explicitly convert or cast aNaN
tonil
first.