is_in {dateutils}R Documentation

Find element of this_in that

Description

Find element of this_in that, ie 'this_in

Usage

is_in(that, this_in)

Arguments

that

first object

this_in

second object

Value

Logical variables indicating whether the element exists in both objects

Examples

that <- seq.Date(from = as.Date("2020-09-15"), by = "day", length.out = 10)
this_in <- seq.Date(from = as.Date("2020-09-11"), by = "day", length.out = 10)
is_in(that, this_in)

[Package dateutils version 0.1.5 Index]