| is_difftime_less {fritools} | R Documentation |
Check Whether Two Times Differ Less Than A Given Value
Description
This is just a wrapper to difftime.
Usage
is_difftime_less(
time1,
time2,
less_than = 1,
units = "days",
verbose = FALSE,
visible = !verbose,
stop_on_error = FALSE
)
Arguments
time1 |
See |
time2 |
See |
less_than |
The number of units that would be too much of a difference. |
units |
See |
verbose |
Be verbose? |
visible |
|
stop_on_error |
Throw an error if the time lag is not less than less_than. |
Value
TRUE if the times do not differ 'that much', but see
stop_on_error.
See Also
Other bits and pieces:
golden_ratio(),
is_valid_primary_key(),
r_cmd_install(),
str2num(),
strip_off_attributes(),
tapply(),
throw()
Examples
a <- as.POSIXct(0, origin = "1970-01-01", tz = "GMT")
b <- as.POSIXct(60*60*24, origin = "1970-01-01", tz = "GMT")
c <- as.POSIXct(60*60*24 - 1, origin = "1970-01-01", tz = "GMT")
is_difftime_less(a, b)
is_difftime_less(a, c)
print(is_difftime_less(a, b, verbose = TRUE))
print(is_difftime_less(a, c, verbose = TRUE))
try(is_difftime_less(a, b, stop_on_error = TRUE))
is_difftime_less(a, c, verbose = TRUE, stop_on_error = TRUE)
[Package fritools version 4.3.0 Index]