Nothing
areaahull <-
function (x, timeout = 5)
{
area <- withTimeout(try(areaahulleval(x), silent = TRUE),
timeout = timeout)
if (!is.numeric(area)) {
warning("Problem in area computation (Returns NA)")
area <- NA
}
if (is.numeric(area) & area < 0) {
warning("Problem in area computation (Returns NA)")
area <- NA
}
return(area)
}
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.