Delete “” from csv values and change column names when writing to a CSV

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.

Leave a Comment