Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have the exact opposite problem as in this question. sqldf is converting dates from GMT/UTC to localtime. How do I prevent this behavior? Note: I use the lubridate package to convert the date string to POSIXct.

dates <- c("9/12/2010 0:25","9/12/2010 23:22","9/10/2010 1:55")
foo <- data.frame(dates=mdy_hm(dates))

returns

                dates
1 2010-09-12 00:25:00
2 2010-09-12 23:22:00
3 2010-09-10 01:55:00

whereas

bar <- sqldf("SELECT * FROM foo")

returns

                dates
1 2010-09-11 19:25:00
2 2010-09-12 18:22:00
3 2010-09-09 20:55:00
share|improve this question
1  
it looks that the output depends of your local. Can you please dput your locals, Sys.getlocale('LC_TIME') – agstudy Feb 22 at 21:59
If you use DF <- data.frame(dates = as.POSIXct(dates, format = "%m/%d/%Y %M:%H")); sqldf("select * from DF") it will work but I will look into it further. For further discussion try: groups.google.com/group/sqldf – G. Grothendieck Feb 23 at 1:29

1 Answer

The help-wiki of sqldf give an example on how to process Dates. You need to use as to convert the result to a numeric. The result is then given to processMethod to convert it to the desired format.

here an adaption to your example.

dates <- c("9/12/2010 0:25","9/12/2010 23:22","9/10/2010 1:55")
foo <- data.frame(dates=mdy_hm(dates))
processDates <- function(data, ...) {
   ix <- grepl("_convert$", names(data))
   names(data)[ix] <- sub("_convert$", "", names(data)[ix])
   data[ix] <- lapply(data[ix], as.POSIXct, 
                      origin = "1970-01-01",
                      tz='UTC')
   data
   }

sqldf("select dates as newdates_convert from foo", method = processDates)

             newdates
1 2010-09-12 00:25:00
2 2010-09-12 23:22:00
3 2010-09-10 01:55:00
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.