Trying to read an integer of seconds since the epoch directly into a datetime type column without having to convert it after reading. Can't seem to get read_csv, fread or vroom to do this. Anyone have a way? #rstats
4
3
4
I would suspect you cannot as no reader can guess when seeing an `int` that you meant it as a delta relative to epoch. I would just read as `int` (or `numeric`) and convert as shown in the screenshot.
May 26, 2021 · 4:28 PM UTC
2
4




