in R Language by (359 points)
How will you read a .csv file in R language?

1 Answer

0 votes
by (32.2k points)
read.csv () function is used to read a .csv file in R language. Below is a simple example –

filcontent <-read.csv (sample.csv)

print (filecontent)

Related questions

+3 votes
asked Jul 28, 2019 in R Language by Aarav2017 (359 points)
...