Wednesday, March 9, 2016

How to read a tsv file in R?

tsv or tab separated files can be imported into R using the separator parameter.

Example :
pf <- read.csv("filename.tsv", sep="\t")

No comments:

Post a Comment