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
Copy file name to clipboardExpand all lines: doc/source/basics.rst
+11-4
Original file line number
Diff line number
Diff line change
@@ -1590,9 +1590,10 @@ dtypes
1590
1590
------
1591
1591
1592
1592
The main types stored in pandas objects are ``float``, ``int``, ``bool``,
1593
-
``datetime64[ns]``, ``timedelta[ns]`` and ``object``. In addition these dtypes
1594
-
have item sizes, e.g. ``int64`` and ``int32``. A convenient :attr:`~DataFrame.dtypes``
1595
-
attribute for DataFrames returns a Series with the data type of each column.
1593
+
``datetime64[ns]`` and ``datetime64[ns, tz]`` (in >= 0.17.0), ``timedelta[ns]``, ``category`` (in >= 0.15.0), and ``object``. In addition these dtypes
1594
+
have item sizes, e.g. ``int64`` and ``int32``. See :ref:`Series with TZ <timeseries.timezone_series>` for more detail on ``datetime64[ns, tz]`` dtypes.
1595
+
1596
+
A convenient :attr:`~DataFrame.dtypes` attribute for DataFrames returns a Series with the data type of each column.
0 commit comments