I have data that looks like the following:
Scenario,ScenName,Step,Date,GBP_fx,EUR_fx
0,"assets",0,"30/09/2016",1,0.865126741
It's a huge file with 100k observations. I read it in R and trim it down to 10k and then write it to csv. However, I couldn't find how to unquote only the header without losing the quotes within the data. If I keep quote = TRUE
, this is what the final data looks like but I want to get rid of the quotes in the header.
"Scenario","ScenName","Step","Date","GBP_fx","EUR_fx"
0,"assets",0,"30/09/2016",1,0.865126741
Any suggestions?