I know that variations of this question have been asked and answered, but I can't seem to get any to work for me.
I have a column labeled 'Interest.Rate', and the values are of this form: 12.75%
I tried:
as.numeric(as.character(loansData$Interest.Rate))
And what I got back was a screen full of 'NA's.
I suspect that I need to remove the '%' sign, but I'm not sure.
Any suggestions?