bigframes.pandas.api.typing.DatetimeMethods.minute#

property DatetimeMethods.minute: Series#

The minutes of the datetime.

Examples:

>>> import bigframes.pandas as bpd
>>> s = bpd.Series(
...     pd.date_range("2000-01-01", periods=3, freq="min")
... )
>>> s
0    2000-01-01 00:00:00
1    2000-01-01 00:01:00
2    2000-01-01 00:02:00
dtype: timestamp[us][pyarrow]
>>> s.dt.minute
0    0
1    1
2    2
dtype: Int64