modin.pandas.DatetimeIndex.microsecond

property DatetimeIndex.microsecond: Index[source]

The microseconds of the datetime.

Return type:

An Index with the microseconds of the datetime.

Examples

>>> idx = pd.date_range("2000-01-01", periods=3, freq="us")
>>> idx
DatetimeIndex([       '2000-01-01 00:00:00', '2000-01-01 00:00:00.000001',
               '2000-01-01 00:00:00.000002'],
              dtype='datetime64[ns]', freq=None)
>>> idx.microsecond
Index([0, 1, 2], dtype='int64')
Copy