I have a csv file where some of the numerical values are expressed as strings with commas as thousand separator, e.g. "1,513" instead of 1513. What is the simplest way to read the data into R?
I can use read.csv(..., colClasses="character"), but then I have to strip out the commas from the relevant elements before converting those columns to numeric, and I can’t find a neat way to do that.
I want to use R rather than pre-processing the data as it makes it easier when the data are revised. Following Shane’s suggestion of using
gsub, I think this is about as neat as I can do: