is.difftime
From lubridate v0.1
by Hadley Wickham
Is x a duration (difftime) object?
Is x a duration (difftime) object?
Usage
is.difftime(x)
Arguments
- x
- an R object
Value
- TRUE if x is a difftime object, FALSE otherwise.
See Also
Examples
is.difftime(as.Date("2009-08-03")) # FALSE
is.difftime(new_duration(days = 12.4)) # TRUE}
Community examples
Looks like there are no examples yet.