There are several functions to read CSV files in R.
1 |
read.csv('C:/Desktop/file.csv') |
But if data wrangling is needed, it might be better of with readr library
1 2 |
library(readr) read_csv('C:/file.csv') |
Python
1 2 3 |
import pandas as pd file = pd.read_csv('file.csv') |