I've got a dataset with 18 digit timestamps.
How can I transform those to a regular date-format, like "%Y-%m-%d %H:%M:%0S6"?
For reproduction one time stamp is: 637201135513320448
I tried using the as.POSIXct()
function like mentioned here, but it returns NA
. I think it's not made for this many digits. I found a hint on c# here, where someone had a similar problem. But I am not able to solve this on R.