intToPOSIX {crawl} | R Documentation |
Reverse as.numeric command that is performed on a vector of type POSIXct
Description
Takes integer value produced by as.numeric(x)
, where x
is a
POSIXct vector and returns it to a POSIXct vector
Usage
intToPOSIX(timeVector, tz = "GMT")
Arguments
timeVector |
A vector of integers produced by as.numeric applied to a PSIXct vector |
tz |
Time zone of the vector (see |
Value
POSIXct vector
Note
There is no check that as.numeric applied to a POSIX vector produced
timeVector
. So, caution is required in using this function. It was
included simply because I have found it useful
Author(s)
Devin S. Johnson
Examples
#library(crawl)
timeVector <- as.numeric(Sys.time())
timeVector
intToPOSIX(timeVector, tz="")
[Package crawl version 2.3.0 Index]