is_first_of_quarter(), is_last_of_quarter(), is_first_of_year() and
is_last_of_year() check whether a Date is the first or respectively the
last day of a quarter/year. is_quarter_bounds() and is_year_bounds checks
whether two Date vectors mark the bounds of (the same) quarters
is_quarter_bounds(first, last) is_first_of_quarter(x) is_last_of_quarter(x) is_year_bounds(first, last) is_first_of_year(x) is_last_of_year(x) is_Date(x) is_POSIXlt(x)
| x, first, last |
|
|---|
a logical vector
#> [1] TRUE FALSE FALSEis_first_of_quarter(x)#> [1] TRUE FALSE FALSEis_last_of_quarter(x)#> [1] FALSE TRUE FALSEis_quarter_bounds(x[[1]], x[[2]])#> [1] TRUEis_quarter_bounds(x[[2]], x[[3]])#> [1] FALSE