as.POSIX*                package:base                R Documentation

_D_a_t_e-_t_i_m_e _C_o_n_v_e_r_s_i_o_n _F_u_n_c_t_i_o_n_s

_D_e_s_c_r_i_p_t_i_o_n:

     Functions to manipulate objects of classes '"POSIXlt"' and
     '"POSIXct"' representing calendar dates and times (to the nearest
     second).

_U_s_a_g_e:

     as.POSIXct(x, tz = "")
     as.POSIXlt(x, tz = "")

_A_r_g_u_m_e_n_t_s:

       x: An object to be converted.

      tz: A timezone specification to be used for the conversion, _if
          one is required_.  System-specific, but '""' is the current
          timezone, and '"GMT"' is UTC (Coordinated Universal Time, in
          French).

_D_e_t_a_i_l_s:

     The 'as.POSIX*' functions convert an object to one of the two
     classes used to represent date/times (calendar dates plus time to
     the nearest second).  They can convert a wide variety of objects,
     including objects of the other class and of classes '"Date"',
     '"date"' (from package 'date' or 'survival'), '"chron"' and
     '"dates"' (from package 'chron') to these classes.  Dates are
     treated as being at midnight UTC.

     They can also convert character strings of the formats
     '"2001-02-03"' and '"2001/02/03"' optionally followed by white
     space and a time in the format '"14:52"' or '"14:52:03"'. 
     (Formats such as '"01/02/03"' are ambiguous but can be converted
     via a format specification by 'strptime'.)

     Logical 'NA's can be converted to either of the classes, but no
     other logical vectors can be.

_V_a_l_u_e:

     'as.POSIXct' and 'as.POSIXlt' return an object of the appropriate
     class.  If 'tz' was specified, 'as.POSIXlt' will give an
     appropriate '"tzone"' attribute.

_N_o_t_e:

     If you want to extract specific aspects of a time (such as the day
     of the week) just convert it to class '"POSIXlt"' and extract the
     relevant component(s) of the list, or if you want a character
     representation (such as a named day of the week) use
     'format.POSIXlt' or 'format.POSIXct'.

     If a timezone is needed and that specified is invalid on your
     system, what happens is system-specific but it will probably be
     ignored.

_S_e_e _A_l_s_o:

     DateTimeClasses for details of the classes; 'strptime' for
     conversion to and from character representations.

_E_x_a_m_p_l_e_s:

     (z <- Sys.time())             # the current date, as class "POSIXct"
     unclass(z)                    # a large integer
     floor(unclass(z)/86400)       # the number of days since 1970-01-01
     (z <- as.POSIXlt(Sys.time())) # the current date, as class "POSIXlt"
     unlist(unclass(z))            # a list shown as a named vector

     as.POSIXlt(Sys.time(), "GMT") # the current time in GMT

