1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
\name{date.mmddyyyy}
\alias{date.mmddyyyy}
\title{Format a Julian date}
\description{
Given a vector of Julian dates, this returns them in the form
``10/11/1989'', ``28/7/1854'', etc.
}
\usage{
date.mmddyyyy(sdate, sep = "/")
}
\arguments{
\item{sdate}{A vector of Julian dates, e.g., as returned by
\code{mdy.date()}.}
\item{sep}{Character string used to separate the month, day, and
year portions of the returned string.}
}
\value{
A vector of character strings containing the formatted dates.
}
\seealso{
\code{\link{date.mdy}},
\code{\link{mdy.date}},
\code{\link{date.ddmmmyy}}
}
\examples{
date.mmddyyyy(as.date(1:10))
}
\keyword{chron}
|