VOOZH about

URL: https://www.geeksforgeeks.org/r-language/how-to-read-a-csv-from-url-into-r/

⇱ How to Read a CSV from URL into R? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

How to Read a CSV from URL into R?

Last Updated : 23 Jul, 2025

In this article, we are going to see how to read CSV files from URL using R Programming Language.

Method 1: Using Base R 

Here we are using read.csv() methods, which is an inbuilt function in R programming. This function is similar to Python because it read the CSV file and returns the data into dataframe.

Syntax: 

read.csv(URL)

Example: Read a CSV from URL 

 Output:

👁 Image

Method 2: Using data.table

This package is capable to read the data from URL. Basically data.table is used for data manipulation operations such as subset, group, update, join, etc. This package contains fread() function that takes URL as input to get the job done.

Syntax: 

fread(URL)

Example: Read CSV from URL 

 Output:

👁 Image

Example 2: Read CSV from URL

 Output:

👁 Image
Comment
Article Tags:
Article Tags:

Explore