I run into a problem when converting character of percentage to numeric. E.g. I want to convert "10%" into 10%, but
as.numeric("10%")
returns NA. Do you have any ideas?
|
I run into a problem when converting character of percentage to numeric. E.g. I want to convert "10%" into 10%, but
returns |
||||
|
|
10% is per definition not a numeric vector. Therefore, the answer NA is correct. You can convert a character vector containing these numbers to numeric in this fashion:
This works by using sub to replace the % character by nothing. |
|||||||||
|
|
Remove the
|
|||
|
|
Get rid of the extraneous characters first:
(Thanks to Paul for the example data). This function now handles: leading non-numeric characters, trailing non-numeric characters, and leaves in the decimal point if present. |
|||||||||||||
|
|
Try with:
This works also with decimals:
The idea is that the symbol |
||||
|
|