Learn R Programming

dateutils (version 0.1.5)

is_in: 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

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab