Using online csv files

Hi everyone,

Could we use online csv files without having to download then upload them to the directory.
Let's take this dataset for instance. How it can be done?

Thanks,

Yes, you can do this. E.g. with my (small) testfile that I uploaded to my website both files can be read with the same result.

library(readr)

df1 <- read.csv("C:\\Users\\Han\\Documents\\testfile.csv",sep=";")
df2 <- read.csv("http://www.hanoostdijk.nl/m1/testfile.csv",sep=";")

But I wonder why this would help you?
It would only save you the local copy of the file (three files in your case).
But at the cost of having to download the file for each step in your analysis.

I think I saw a function with a callback to select only certain rows and of course that could help when you know beforehand that you need such a selection. I am afraid I do not remember the name of the function/package.

1 Like

So the download is happening anyway then. okay thanks for your help @HanOostdijk

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.