R clearing a character string and converting it to a numeric number
I have a character string
abc <- "Â 267750Â" class(abc) "character"
What do I need to do for abc to get rid of “ ” and convert it from character to numeric. Perhaps as.numeric will work, but I need to get rid of “ ” first.
I want to convert above:
abc 267750 class(abc) "numeric"
Thank you for your help.
source share