Nothing
zerofind <- function(fmat) {
if (!is.numeric(fmat)) stop("Argument is not numeric.")
pairNums <- c(min(fmat),max(fmat))
if (length(pairNums) != 2) stop("Argument is not of length 2.")
if (min(pairNums) <= 0 && max(pairNums) >= 0) return(TRUE) else return(FALSE)
}
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.