@@ -1714,6 +1714,8 @@ cdef class BusinessHour(BusinessMixin):
1714
1714
Start time of your custom business hour in 24h format.
1715
1715
end : str, time, or list of str/time, default: "17:00"
1716
1716
End time of your custom business hour in 24h format.
1717
+ offset : timedelta, default timedelta(0)
1718
+ Time offset to apply.
1717
1719
1718
1720
Examples
1719
1721
--------
@@ -2243,6 +2245,15 @@ cdef class BYearEnd(YearOffset):
2243
2245
"""
2244
2246
DateOffset increments between the last business day of the year.
2245
2247
2248
+ Parameters
2249
+ ----------
2250
+ n : int, default 1
2251
+ The number of years represented.
2252
+ normalize : bool, default False
2253
+ Normalize start/end dates to midnight before generating date range.
2254
+ month : int, default 1
2255
+ A specific integer for the month of the year.
2256
+
2246
2257
Examples
2247
2258
--------
2248
2259
>>> from pandas.tseries.offsets import BYearEnd
@@ -3073,7 +3084,10 @@ cdef class WeekOfMonth(WeekOfMonthMixin):
3073
3084
3074
3085
Parameters
3075
3086
----------
3076
- n : int
3087
+ n : int, default 1
3088
+ The number of months represented.
3089
+ normalize : bool, default False
3090
+ Normalize start/end dates to midnight before generating date range.
3077
3091
week : int {0, 1, 2, 3, ...}, default 0
3078
3092
A specific integer for the week of the month.
3079
3093
e.g. 0 is 1st week of month, 1 is the 2nd week, etc.
0 commit comments