% File src/library/base/man/DateTimeClasses.Rd % Part of the R package, http://www.R-project.org % Copyright 1995-2007 R Core Development Team % Distributed under GPL 2 or later \name{DateTimeClasses} % implementation mostly in ../R/datetime.R \alias{DateTimeClasses} \alias{POSIXct} \alias{POSIXlt} \alias{POSIXt} \alias{print.POSIXct} \alias{print.POSIXlt} \alias{summary.POSIXct} \alias{summary.POSIXlt} \alias{+.POSIXt} \alias{-.POSIXt} \alias{Ops.POSIXt} \alias{Math.POSIXt} \alias{Summary.POSIXct} \alias{Math.POSIXlt} \alias{Summary.POSIXlt} \alias{[.POSIXct} \alias{[<-.POSIXct} \alias{[[.POSIXct} \alias{[.POSIXlt} \alias{[<-.POSIXlt} \alias{as.data.frame.POSIXct} \alias{as.data.frame.POSIXlt} \alias{.leap.seconds} \alias{is.na.POSIXlt} \alias{all.equal.POSIXct} \alias{c.POSIXct} \alias{c.POSIXlt} \alias{as.matrix.POSIXlt} \alias{mean.POSIXct} \alias{mean.POSIXlt} \alias{str.POSIXt} \alias{check_tzones} \alias{duplicated.POSIXlt} \alias{unique.POSIXlt} \alias{date-time} % linked to in difftime.Rd \title{Date-Time Classes} \description{ Description of the classes \code{"POSIXlt"} and \code{"POSIXct"} representing calendar dates and times (to the nearest second). } \usage{ \method{print}{POSIXct}(x, \dots) \method{summary}{POSIXct}(object, digits = 15, \dots) \special{time + z} \special{time - z} \special{time1 lop time2} } \arguments{ \item{x, object}{An object to be printed or summarized from one of the date-time classes.} \item{digits}{Number of significant digits for the computations: should be high enough to represent the least important time unit exactly.} \item{\dots}{Further arguments to be passed from or to other methods.} \item{time}{date-time objects} \item{time1, time2}{date-time objects or character vectors. (Character vectors are converted by \code{\link{as.POSIXct}}.)} \item{z}{a numeric vector (in seconds) \emph{or} an object of class \code{"\link{difftime}"}.} \item{lop}{One of \code{==}, \code{!=}, \code{<}, \code{<=}, \code{>} or \code{>=}.} } \details{ There are two basic classes of date/times. Class \code{"POSIXct"} represents the (signed) number of seconds since the beginning of 1970 as a numeric vector. Class \code{"POSIXlt"} is a named list of vectors representing \describe{ \item{\code{sec}}{0--61: seconds} \item{\code{min}}{0--59: minutes} \item{\code{hour}}{0--23: hours} \item{\code{mday}}{1--31: day of the month} \item{\code{mon}}{0--11: months after the first of the year.} \item{\code{year}}{Years since 1900.} \item{\code{wday}}{0--6 day of the week, starting on Sunday.} \item{\code{yday}}{0--365: day of the year.} \item{\code{isdst}}{Daylight savings time flag. Positive if in force, zero if not, negative if unknown.} } The classes correspond to the POSIX/C99 constructs of \sQuote{calendar time} (the \code{time\_t} data type) and \sQuote{local time} (or broken-down time, the \code{struct tm} data type), from which they also inherit their names. \code{"POSIXct"} is more convenient for including in data frames, and \code{"POSIXlt"} is closer to human-readable forms. A virtual class \code{"POSIXt"} inherits from both of the classes: it is used to allow operations such as subtraction to mix the two classes. Logical comparisons and limited arithmetic are available for both classes. One can add or subtract a number of seconds %or a \code{\link{difftime}} object from a date-time object, but not add two date-time objects. Subtraction of two date-time objects is equivalent to using \code{\link{difftime}}. Be aware that \code{"POSIXlt"} objects will be interpreted as being in the current timezone for these operations, unless a timezone has been specified. \code{"POSIXlt"} objects will often have an attribute \code{"tzone"}, a character vector of length 3 giving the timezone name from the \env{TZ} environment variable and the names of the base timezone and the alternate (daylight-saving) timezone. Sometimes this may just be of length one, giving the timezone name. \code{"POSIXct"} objects may also have an attribute \code{"tzone"}, a character vector of length one. If set, it will determine how the object is converted to class \code{"POSIXlt"} and in particular how it is printed. This is usually desirable, but if you want to specify an object in a particular timezone but to be printed in the current timezone you may want to remove the \code{"tzone"} attribute (e.g. by \code{c(x)}). Unfortunately, the conversion is complicated by the operation of time zones and leap seconds (23 days have been 86401 seconds long so far: the times of the extra seconds are in the object \code{.leap.seconds}). The details of this are entrusted to the OS services where possible. This will usually cover the period 1970--2037, and on Unix machines back to 1902 (when time zones were in their infancy). Outside those ranges we use our own C code. This uses the offset from GMT in use in the timezone in one of 1970 to 1978 (chosen so that the likely DST transition days are Sundays), and uses the alternate (daylight-saving) timezone only if \code{isdst} is positive. (There is no reason to suppose that the DST rules will remain the same in the future, and indeed the US legislated in 2005 to change its rules as from 2007, with a possible future reversion.) It seems that some systems use leap seconds but most do not. This is detected and corrected for at build time, so all \code{"POSIXct"} times used by \R do not include leap seconds. (Conceivably this could be wrong if the system has changed since build time, just possibly by changing locales.) Using \code{\link{c}} on \code{"POSIXlt"} objects converts them to the current time zone. } \section{Sub-section Accuracy}{ Classes \code{"POSIXct"} and \code{"POSIXlt"} are able to express fractions of a second. (Conversion of fractions between the two forms may not be exact, but will have better than microsecond accuracy.) Fractional seconds are printed only if \code{\link{options}("digits.secs")} is set: see \code{\link{strftime}}. } \seealso{ \link{Dates} for dates without times. \code{\link{as.POSIXct}} and \code{\link{as.POSIXlt}} for conversion between the classes. \code{\link{strptime}} for conversion to and from character representations. \code{\link{Sys.time}} for clock time as a \code{"POSIXct"} object. \code{\link{difftime}} for time intervals. \code{\link{cut.POSIXt}}, \code{\link{seq.POSIXt}}, \code{\link{round.POSIXt}} and \code{\link{trunc.POSIXt}} for methods for these classes. \code{\link{weekdays.POSIXt}} for convenience extraction functions. } \section{Warning}{ Some Unix-like systems (especially Linux ones) do not have \code{"TZ"} set, yet have internal code that expects it (as does POSIX). We have tried to work around this, but if you get unexpected results try setting \code{"TZ"}. See \code{\link{as.POSIXlt}} for valid settings. } \examples{ (z <- Sys.time()) # the current date, as class "POSIXct" Sys.time() - 3600 # an hour ago as.POSIXlt(Sys.time(), "GMT") # the current time in GMT format(.leap.seconds) # all 23 leapseconds in your timezone print(.leap.seconds, tz="PST8PDT") # and in Seattle's } \keyword{utilities} \keyword{chron}