Description Usage Arguments Details Value Author(s) References See Also Examples
Convert a julian date into a standard calendar date format
1 | julian2date(x)
|
x |
julian date; that is, the number of days since day 0 (default is 1970-01-01) |
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.
Return standard calendar date format.
Tomas Aragon, aragon@berkeley.edu, http://www.phdata.science
none
1 2 3 4 5 6 | 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.