From one of the answers in this SO question, I got the lines:
require(readr)
myData <- read_csv("foo.txt.gz")
But this makes me lose data for some reason.
My second column is a time column in this format: 9:30:00.244271971 And this code transforms it into: 09:30:00, hence losing a lot of information.
How can I fix this? Is there a way to avoid losing this information?