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
The default is set at ``origin='unix'``, which defaults to ``1970-01-01 00:00:00``.
72
+
Commonly called 'unix epoch' or POSIX time.
73
+
74
+
.. ipython:: python
75
+
76
+
pd.to_datetime([1, 2, 3], unit='D')
77
+
58
78
.. _whatsnew_0200.enhancements.groupby_access:
59
79
60
80
Groupby Enhancements
@@ -317,7 +337,7 @@ Other Enhancements
317
337
- ``pd.DataFrame.to_latex`` and ``pd.DataFrame.to_string`` now allow optional header aliases. (:issue:`15536`)
318
338
- Re-enable the ``parse_dates`` keyword of ``read_excel`` to parse string columns as dates (:issue:`14326`)
319
339
- Added ``.empty`` property to subclasses of ``Index``. (:issue:`15270`)
320
-
340
+
- Enabled floor division for ``Timedelta`` and ``TimedeltaIndex`` (:issue:`15828`)
321
341
- ``pandas.io.json.json_normalize()`` gained the option ``errors='ignore'|'raise'``; the default is ``errors='raise'`` which is backward compatible. (:issue:`14583`)
322
342
- ``pandas.io.json.json_normalize()`` with an empty ``list`` will return an empty ``DataFrame`` (:issue:`15534`)
323
343
- ``pandas.io.json.json_normalize()`` has gained a ``sep`` option that accepts ``str`` to separate joined fields; the default is ".", which is backward compatible. (:issue:`14883`)
0 commit comments