the default function for read csv in R is: read.csv()
You need select the path of his file. You could use file.choose() and select the file.
Check if the file has "," or ";" for separate colums
Example:
file.choose()
#
data<-read.csv("put the path", sep=",")