Possible Duplicate:
How R formats POSIXct with fractional seconds
I'm familiar with this question about "How R formats POSIXct with fractional seconds". An argument follows there, regarding whether POSIXct has numeric errors or not when dealing with micro-seconds.
Before I re-implement a whole set of xts functionalities that can deal without errors with micro-seconds (nothing wrong with xts - just that it required POSIXct), I just wanted to make sure:
Why is the output of the following line is 4.577894?
as.POSIXlt(as.POSIXct(sprintf("%s",(format(as.POSIXct("2012-12-14 15:42:04.577895 EDT"), "%Y-%m-%d %H:%M:%OS6")))))$sec
Thanks a lot!
EDIT
The rational behind this is the following: if I'm reading a time entry from a file, doing some processing, writing to file again, reading again etc., I get accumulated errors. So - this is not a 'trick' question, but actually comes after hours of debugging..
4. Did you meanas.POSIXlt(as.POSIXct(sprintf("%s",(format(as.POSIXct("2012-12-14 15:42:04.577895 EDT"), "%Y-%m-%d %H:%M:%OS6")))))? – plannapus Feb 4 at 12:03as.POSIXct("2012-12-14 15:42:04.577895 EDT")returns"2012-12-14 15:42:04 CET"that you then input directly tosprintf: at this point you already lost your microseconds info. Anything you can do after that will only gives you4as the seconds and not4.577894nor4.577895. Hence my first comment, since your question only makes sense if you input a character string that show the microseconds insprintf. I understand perfectly that your desired final object has to be aPOSIXltobject. – plannapus Feb 4 at 12:18