Class DatetimeMethods (0.16.0)

DatetimeMethods(
    data=None,
    index: vendored_pandas_typing.Axes | None = None,
    dtype: typing.Optional[
        bigframes.dtypes.DtypeString | bigframes.dtypes.Dtype
    ] = None,
    name: str | None = None,
    copy: typing.Optional[bool] = None,
    *,
    session: typing.Optional[bigframes.session.Session] = None
)

Accessor object for datetime-like properties of the Series values.

Properties

date

Returns numpy array of Python datetime.date objects.

Namely, the date part of Timestamps without time and timezone information.

day

The day of the datetime.

dayofweek

The day of the week with Monday=0, Sunday=6.

Return the day of the week. It is assumed the week starts on Monday, which is denoted by 0 and ends on Sunday which is denoted by 6. This method is available on both Series with datetime values (using the dt accessor) or DatetimeIndex.

Returns
TypeDescription
Series or IndexContaining integers indicating the day number.

hour

The hours of the datetime.

minute

The minutes of the datetime.

month

The month as January=1, December=12.

quarter

The quarter of the date.

second

The seconds of the datetime.

time

Returns numpy array of datetime.time objects.

The time part of the Timestamps.

year

The year of the datetime.