You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for pandas, we need to be careful. We don't want is_nan to pick up NaT / None / anything else which is used for missing values, but instead, specifically, we only want nan. So, we should check
that the dtype is Float
that s != s
The text was updated successfully, but these errors were encountered:
For a specific nan do you want to disambiguate between Float64 & float64 in pandas? Where the latter would have the traditional nan, but the former would coerce all present nan to NA?
Looks like this would be useful to Tubular: azukds/tubular#349 (comment)
There would need to be a caveat in the docstring about how pandas doesn't distinguish between nan and null but other libraries typically do
This requires some attention to check that we get such nan vs null details correct:
is_nan
to pick upNaT
/None
/ anything else which is used for missing values, but instead, specifically, we only wantnan
. So, we should checkFloat
s != s
The text was updated successfully, but these errors were encountered: