R/after-week.R
, R/before-week.R
, R/between-week.R
, and 2 more
event-mweek.Rd
on_mweek()
: Is the date on the x
-th week of the month?
before_mweek()
: Is the date before the x
-th week of the month?
after_mweek()
: Is the date after the x
-th week of the month?
between_mweeks()
: Is the date between the x
-th and y
-th weeks of
the month?
after_mweek(x, inclusive = FALSE, start = TRUE) before_mweek(x, inclusive = FALSE, start = TRUE) between_mweeks(x, y, start = TRUE) on_mweek(x, start = TRUE)
x |
A week of the month to mark as an event. For |
---|---|
inclusive |
Should |
start |
Should counting start from the beginning of the month? If |
y |
A week of the month to mark as an event. |