I am trying to read in a csv file that has quote marks in it
id, value, other
1, "("a"="b", "b"="c", "c"="d")", 2
2, "("a"="b", "b"="c", "c"="d")", 3
read.csv removes the quote marks so I end up with
id, value, other
1, (a=b, b=c, c=d), 2
2, (a=b, b=c, c=d), 3
Anyone got a smart on how I can keep the quote marks?