pandas.tseries.offsets.BusinessMonthBegin.copy #

商业月开始。复制

返回频率的副本。

例子

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