Pandas ExtensionArray for tz-naive or tz-aware datetime data.
Warning
DatetimeArray is currently experimental, and its API may change without warning. In particular, DatetimeArray.dtype is expected to change to always be an instance of an ExtensionDtype subclass.
The datetime data.
For DatetimeArray values (or a Series or Index boxing one), dtype and freq will be extracted from values.
Note that the only NumPy dtype allowed is ‘datetime64[ns]’.
The frequency.
Whether to copy the underlying array of values.
Attributes
None |
Methods
None |
Examples
>>> pd.arrays.DatetimeArray._from_sequence(
... pd.DatetimeIndex(['2023-01-01', '2023-01-02'], freq='D'))
<DatetimeArray>
['2023-01-01 00:00:00', '2023-01-02 00:00:00']
Length: 2, dtype: datetime64[ns]
© 2008–2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
© 2011–2025, Open source contributors
Licensed under the 3-clause BSD License.
https://pandas.pydata.org/pandas-docs/version/2.3.0/reference/api/pandas.arrays.DatetimeArray.html