I have a dataframe with various columns, Some of the data within some columns contain double quotes, I want to remove these, for eg:
ID name value1 value2
"1 x a,"b,"c x"
"2 y d,"r" z"
I want this to look like this:
ID name value1 value2
1 x a,b,c x
2 y d,r z