pandas.tseries.offsets.Second.copy#

Second.copy()#

返回频率的副本。

参见

tseries.offsets.Week.copy

返回一个周偏移量的副本。

tseries.offsets.DateOffset.copy

返回日期偏移的副本。

tseries.offsets.MonthEnd.copy

返回 MonthEnd 偏移量的副本。

tseries.offsets.YearBegin.copy

返回 YearBegin 偏移量的副本。

示例

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