Skip to content

From time-strings to Unix-Epoche-time?

3 messages · oliver, jim holtman, Brian Ripley

#
Hello,


I have strings with date-/time-data from a logfile.

For a sort-by-time (and other time-related analysis)
I need something to convert the
times to the Unix-epoche-time (better also with parts
of seconds).

Is there something that does that job (or a similar conversion)
in R?

TIA,
   Oliver Bandel
#
If you are using POSIXct, just 'unclass' the value:
POSIXct[1:1], format: "2008-09-12 09:00:00"
[1] 1221210000
attr(,"tzone")
[1] ""


On Fri, Sep 12, 2008 at 9:15 AM, Oliver Bandel
<oliver at first.in-berlin.de> wrote:

  
    
#
On Fri, 12 Sep 2008, Oliver Bandel wrote:

            
as.numeric, unsurprisingly, for class  "POSIXct" (and as.POSIXct if 
needed ...).  It can be to sub-second accuracy (use %OS to read such 
fields).