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
BUG: various bug fixes for DataFrame/Series construction related to:
0 and 1 len ndarrays
datetimes that are single objects
mixed datetimes and objects (GH #2751)
astype now converts correctly with a datetime64 type to object, NaT are converted to np.nan
_get_numeric_data with empty mixed-type returning empty, but index was missing
DOC: release notes updated, added missing_data section to docs, whatsnew 0.10.2
This is a minor release from 0.10.1 and includes many new features and
7
+
enhancements along with a large number of bug fixes. There are also a number of
8
+
important API changes that long-time pandas users should pay close attention
9
+
to.
10
+
11
+
API changes
12
+
~~~~~~~~~~~
13
+
14
+
Datetime64[ns] columns in a DataFrame (or a Series) allow the use of ``np.nan`` to indicate a nan value, in addition to the traditional ``NaT``, or not-a-time. This allows convenient nan setting in a generic way. Furthermore datetime64 columns are created by default, when passed datetimelike objects (*this change was introduced in 0.10.1*)
0 commit comments