How can import data from a big tsv file????

Hello to all,

I have a tsv file (5gb) from which i should filter some data. Can you tell me how to do it?

Have you tried anything? If you have sufficient memory, I suggest you start with

library(readr)
DF <- read_tsv("Path_To _The_File")

I solved! thanks for your advice

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.