pandas.tseries.offsets.CustomBusinessMonthBegin.copy#

CustomBusinessMonthBegin.copy()#

Возвращает копию частоты.

Примеры

>>> freq = pd.DateOffset(1)
>>> freq_copy = freq.copy()
>>> freq is freq_copy
False