julian2date {epitools} | R Documentation |
Convert a julian date into standard a date format
Description
Convert a julian date into a standard calendar date format
Usage
julian2date(x)
Arguments
x |
julian date; that is, the number of days since day 0 (default is 1970-01-01) |
Details
In R, the julian
function converts a date-time object into a
Julian date: the number of day since day 0 (default is
1970-01-01). However, there is no function, without loading another
package, that converts a Julian date back into a date object. The
julian2date
function does this conversion.
Value
Return standard calendar date format.
Author(s)
Tomas Aragon, aragon@berkeley.edu, http://www.phdata.science
References
none
See Also
Examples
mydates <- c("1/1/04", "1/2/04", "1/7/04", "1/14/04", "8/18/04");
mydates <- as.Date(mydates, format = "%m/%d/%y")
mydates
myjulian <- julian(mydates)
myjulian
julian2date(myjulian)
[Package epitools version 0.5-10.1 Index]