Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there an R equivalent of strtotime

PHP has this wonderful function, strtotime, that takes any string containing just about any date format and returns a time (secs-since-1970). It is more future-proof than strptime, for instance, because if the date format changes my script does not break. Does R have anything similar?

(I don't need the time-relative feature of strtotime as of today, but I'm sure at some point I'll need strtotime("next Thursday"), or strtotime("first day of last month"), so if you know R extensions that do that too, then I'd love to hear about it!)

UPDATE: If anyone (possibly me at some point in the future) want to try implementing this in R, or any other language, I tracked down the source code for it. The relevant files are timelib.h, timelib.re and timelib_structs.h. It appears to all be standard C and standalone, no PHP headers to bring in. However the compile process compiles the *.re file into real C, so you will need to install and compile PHP at least once.

The code that calls it is also quite straightforward (see lines 1428 to 1433, at the time of writing; the longer code above it in the same function is just to get the current time, for use in relative times).

like image 662
Darren Cook Avatar asked Sep 02 '11 03:09

Darren Cook


1 Answers

I love that function in PHP, but unfortunately there seems to not be an equivalent in R (and none is mentioned in the language reference, most notably http://rss.acs.unt.edu/Rdoc/library/base/html/DateTimeClasses.html).

like image 127
Dustin Oprea Avatar answered Sep 19 '22 20:09

Dustin Oprea