as.Date1970 | R Documentation |
as.Date.numeric
requires origin
to be specified. The present function
assumes that this origin is January 1, 1970.
as.Date1970(x, ...)
x |
a numeric vector of dates in days since the start of 1970. |
... |
optional arguments to pass to |
Returns a vector of Dates
Spencer Graves
as.Date
as.POSIXct1970
days <- c(0, 1, 365)
Dates <- as.Date1970(days)
all.equal(c('1970-01-01', '1970-01-02', '1971-01-01'),
as.character(Dates))
all.equal(days, as.numeric(Dates))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.