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
In [11]: pd.Series([])
Out[11]: Series([], dtype: float64)
In [12]: pd.Series([None]) # should be NaN / float ?
Out[12]:
0 None
dtype: object
In [13]: pd.Series([None, 1])
Out[13]:
0 NaN
1 1
dtype: float64
The text was updated successfully, but these errors were encountered:
We recently discussed this in #13894, where we sort of decided to not change this at the moment.
So closing this, although we should maybe reconsider this somewhere for pandas 2.0 how to handle 'None'.
I was a little surprised by this
The text was updated successfully, but these errors were encountered: