Google News
logo
R - Interview Questions
How can you load a .csv file in R?
Loading a .csv file in R is quite easy.

All you need to do is use the “read.csv()” function and specify the path of the file.

house<-read.csv("C:/Users/John/Desktop/house.csv")
Advertisement