So, I have tsv file consisting of a single column that I would like to retrieve from github to my R session, and read it as a data frame. Is there a simple way to do this? Thank you in advance for any answers
Asked
Active
Viewed 28 times
0
-
Have you see [this](https://stackoverflow.com/questions/14441729/read-a-csv-from-github-into-r)? – pogibas Dec 13 '19 at 13:01
-
yes, I tried it but from it isn't working for my tsv file, I used it like this: x <- getURL("https://raw.github.com/tadeu95/BAGs/bold_data.txt") y <- read.tsv(text = x) – tadeufontes Dec 13 '19 at 13:16
-
`getURL("https://github.com/tadeu95/BAGs/blob/master/bold_data.txt")` – pogibas Dec 13 '19 at 13:36