I am trying to read in a new csv file using this code
...
recent <- read.csv("August2020.csv")
The file "August2020.csv" is in my working directory. R will send this error message
...
Error in read.table(file = file, header = header, sep = sep, quote = quote, :
duplicate 'row.names' are not allowed
Other csv files in my directory R will read, but not this one. Is something wrong with "August2020.csv", if not, how can I read it in?