Nothing
sign_of <- function(x) {
if (x > 0) "positive" else if (x < 0) "negative" else "zero"
}
clamp <- function(x, lo, hi) {
if (x < lo) return(lo)
if (x > hi) return(hi)
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.