I have an excel file and I want to read it in R. To do this I converted the file into a csv. Overall, the file contains 17.000 rows and 27 columns.
This is the code I used:
read.csv("example.csv", sep = ";", stringsAsFactors = F, quote = "", header = T, fill = T)
However, R only reads 27 rows. I read some post on this topic. So I used quote = ""
to fix this issue (see the code above).
For this task I used RStudio. If I disable quote
I get the message line 14 have not 27 elements (the file has 27 columns). Maybe it has something to with this.