I have single quote (' '
) in every item of my dataframe, mydf
. How can I remove those single quotes?
For example, if I print colnames(mydf)
, I get 'column1'
, 'column2'
and so forth.
I just want column1
, column2
without any quotes. I want same for all the vectors in those columns.