pandas.tseries.offsets.YearBegin.copy#
- YearBegin.copy()#
Return a copy of the frequency.
See also
tseries.offsets.Week.copyReturn a copy of Week offset.
tseries.offsets.DateOffset.copyReturn a copy of date offset.
tseries.offsets.MonthEnd.copyReturn a copy of MonthEnd offset.
tseries.offsets.YearBegin.copyReturn a copy of YearBegin offset.
Examples
>>>freq=pd.DateOffset(1)>>>freq_copy=freq.copy()>>>freqisfreq_copyFalse
On this page