decomma | R Documentation |
A shortcut function to strip commas out of numeric fields imported from other software and convert them into numeric vectors that can be operated on. This assumes decimal point as opposed to decimal comma notation.
decomma(x)
x |
a character vector containing numbers with commas that should be coerced into being numeric. |
This function assumes decimal point notation for numbers. For more information, see https://en.wikipedia.org/wiki/Decimal_mark#Countries_using_Arabic_numerals_with_decimal_point.
A numeric
Jared E. Knowles
input <- c("10,243", "11,212", "7,011", "5443", "500")
output <- decomma(input)
is.numeric(output)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.