Delete "" from csv values and change column names when writing to a CSV
Solution 1:
See manual write.table {utils}.
help(write.csv)
write.csv(X, quote = FALSE)
The justification for quoting the fields by default is that unquoted fields containing commas will be misinterpreted.