Hello,
I imported csv. file to the R from Kaggle.
"Income" column of my dataset is in char type inside quotation marks:
str(data)
$ Income : chr "$84,835.00 " "$57,091.00 " "$67,267.00 " "$32,474.00 "
How can I convert this column to int type? I tried some functions but I got full NA results.
In this way, I can not analyse this column in terms of mean,median,distribution etc.
Thank you.