pandas.tseries.offsets.HalfYearBegin.name#
- HalfYearBegin.name#
Return a string representing the base frequency.
This is typically a short string alias (e.g., ‘h’ for hourly, ‘D’ for daily) used to identify the offset type, regardless of the n multiplier.
See also
tseries.offsets.WeekRepresents a weekly offset.
DateOffsetBase class for all other offset classes.
tseries.offsets.DayRepresents a single day offset.
tseries.offsets.MonthEndRepresents a monthly offset that snaps to the end of the month.
Examples
>>> pd.offsets.Hour().name 'h'
>>> pd.offsets.Hour(5).name 'h'