Nothing
# Try to apply as.numeric, but if any warnings or errors occur, just use the
# original column values
try_as_numeric <- function(x) {
tryCatch(
{
# Code to be executed initially
as.numeric(x)
},
error=function(cond) {
# Code for handling errors
x
},
warning=function(cond) {
# Code for handling warnings
x
}
)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.