recur_on_mday()is deprecated as of almanac 1.0.0 in favor ofrecur_on_day_of_month().recur_on_wday()is deprecated as of almanac 1.0.0 in favor ofrecur_on_day_of_week().recur_on_yday()is deprecated as of almanac 1.0.0 in favor ofrecur_on_day_of_year().recur_on_yweek()is deprecated as of almanac 1.0.0 in favor ofrecur_on_week_of_year().recur_on_ymonth()is deprecated as of almanac 1.0.0 in favor ofrecur_on_month_of_year().
Usage
recur_on_mday(x, mday)
recur_on_wday(x, wday, nth = NULL)
recur_on_yday(x, yday)
recur_on_yweek(x, yweek)
recur_on_ymonth(x, ymonth)Arguments
- x
[rrule]A recurrence rule.
- mday
[integer]The days of the month on which to recur. Negative values are allowed, which specify
ndays from the end of the month.- wday
[integer / character]Days of the week to recur on. Integer values must be from
1to7, with1 = Mondayand7 = Sunday. This is also allowed to be a full weekday string like"Tuesday", or an abbreviation like"Tues".- nth
[integer / NULL]Limit to the n-th occurrence of the
dayin the base frequency. For example, in a monthly frequency, usingnth = -1would limit to the lastdayin the month. The default ofNULLchooses all occurrences.- yweek
[integer]Weeks of the year to recur on. Integer values must be between
[1, 53]or[-53, -1].