is.POSIXt
From lubridate v1.2.0
by Garrett Grolemund
Is x a POSIXct or POSIXlt object?
Is x a POSIXct or POSIXlt object?
Usage
is.POSIXt(x)
Arguments
- x
- an R object
Value
- TRUE if x is a POSIXct or POSIXlt object, FALSE otherwise.
See Also
Examples
is.POSIXt(as.Date("2009-08-03")) # FALSE
is.POSIXt(as.POSIXct("2009-08-03")) # TRUE
Community examples
Looks like there are no examples yet.