Learn R Programming

epitools (version 0.5-10.1)

julian2date: 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)

Value

Return standard calendar date format.

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.

References

none

See Also

format.Date, weekdays

Examples

Run this code
# NOT RUN {
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)

# }

Run the code above in your browser using DataLab