pandas.tseries.offsets.Minute.copy#
- Minute.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() >>> freq is freq_copy False