When saving data in R, if you use write.csv() with default arguments you get a quoted csv file like this:
"a","b"
"c","d"
However, if you use readr::write_csv() you get by default (and it looks there's no option to change this) an unquoted csv:
a,b
c,d
If you want a reproducible example, try
write.csv(mtcars)
readr::write_csv(mtcars)
As of why I'd like to use write_csv over write.csv, aside from speed, it allows me to have LF line ending on Windows instead of switching from LFCR using Notepad++ or saving the file as a binary file.