Description Usage Arguments Value Examples
View source: R/utility_functions.R
Check whether a given date range overlaps with the other collection of date range.
1 | overlapping_range(start_value, end_value, start_vector, end_vector)
|
start_value |
a date value which signifies start of the date range to check for overlap. |
end_value |
a date value which signifies end of the date range to check for overlap. |
start_vector |
a date vector which signifies start of the multiple date range to check overlap against. |
end_vector |
a date vector which signifies end of the multiple date range to check overlap against. |
a logical value to represent overlap.
1 2 3 | overlapping_range(start_value = as.Date("2020-01-01"),
end_value = as.Date("2021-01-01"),
start_vector = as.Date("2019-03-01"), end_vector = as.Date("2021-06-01"))
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.