pandas.PeriodIndex.minute#

property PeriodIndex.minute[source]#

The minute of the period.

See also

PeriodIndex.hour

The hour of the period.

PeriodIndex.second

The second of the period.

PeriodIndex.to_timestamp

Cast to DatetimeArray/Index.

Examples

>>> idx = pd.PeriodIndex(["2023-01-01 10:30:00",
...                       "2023-01-01 11:50:00"], freq='min')
>>> idx.minute
Index([30, 50], dtype='int64')