pandas.tseries.offsets.CustomBusinessMonthBegin.m_offset#

CustomBusinessMonthBegin.m_offset#

Return a MonthBegin or MonthEnd offset.

This is used internally to compute the month-based component of the custom business month offset calculation.

See also

tseries.offsets.MonthBegin

Represents the start of the month.

tseries.offsets.MonthEnd

Represents the end of the month.

Examples

>>> pd.offsets.CustomBusinessMonthBegin().m_offset
<MonthBegin>
>>> pd.offsets.CustomBusinessMonthEnd().m_offset
<MonthEnd>