%within%
From lubridate v1.2.0
by Garrett Grolemund
Tests whether a date or interval falls within an interval
otherwise. If a is an interval, both its start and end dates must fall within b to return TRUE.
Usage
a %within% b
Arguments
- a
- An interval or date-time object
- b
- An interval
Value
- A logical
Examples
int <- new_interval(ymd("2001-01-01"), ymd("2002-01-01"))
# 2001-01-01 UTC--2002-01-01 UTC
int2 <- new_interval(ymd("2001-06-01"), ymd("2002-01-01"))
# 2001-06-01 UTC--2002-01-01 UTC
ymd("2001-05-03") %within% int # TRUE
int2 %within% int # TRUE
ymd("1999-01-01") %within% int # FALSE
Community examples
Looks like there are no examples yet.