This question might sound silly, anyway, I have a csv
file with column names like this: gauge_(1)
, gauge_(2)
, etc.
and when I load it using read.csv()
the names change to gauge_.1.
, gauge_.2.
, etc.
I tried using the quote
argument but couldn't get any good result.
What should I do to keep the names without change? I mean whitout the ( ) characters being changed to dots?
Thank you!