%within%
From lubridate v1.1.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 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") TRUE ymd("1999-01-01")
Community examples
Looks like there are no examples yet.