I am trying to use more extensively data.table and ITime is the UDT replicating POSIXlt "DateTime" type.
> strptime("01-04-2012 09:23:45.987364", format="%d-%m-%Y %H:%M:%OS")
[1] "2012-04-01 09:23:45.987364"
> time = strptime("01-04-2012 09:23:45.987364", format="%d-%m-%Y %H:%M:%OS")
> class(time)
[1] "POSIXlt" "POSIXt"
But I can't get ms or micro with ITime
> time = as.ITime("09:23:45.987364", format="%H:%M:%OS")
> time
[1] "09:23:45"
How can I handle fractions with ITime ? Cheers