Hi,
you need to use this script to import a csv file inside the R studio:
setwd('D:\ ..... you need to write where you save you file, in which folder')
read.table<-read.csv('here you need to write the name of the file, for example CHL.csv',sep=';',dec=',',head=TRUE)
CHL<-read.table
fix(CHL)