> t <- Sys.time()
> ct <- as.character(t)
> t - as.POSIXct(ct)
Time difference of 0.4370408 secs
The above example indicates that precision is lost when converting POSIXct to character.
How to preserve the exact value when converting to character so that when I convert back to POSIXct from character I get the original value?
?t
. – Hamil