as_numeric | R Documentation |
Convert to numeric passing through character for safety
as_numeric(x, ..., require_conversion = NULL)
x |
vector |
... |
additional argument to as.character |
require_conversion |
If values are converted to |
Other Numerics:
unique_non_numerics()
# factor with weird levels that we don't want to keep ex <- factor(c(1, 2, 3, 4), levels = c(2, 3, 1, 4)) ex # keeps information about the levels, oh no! as.numeric(ex) # keeps the labelled values as_numeric(ex) as_numeric(c("1", "A"), require_conversion=FALSE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.