Nothing
"are.parpe3.valid" <-
function(para,nowarn=FALSE) {
if(! is.pe3(para)) return(FALSE)
if(any(is.na(para$para))) return(FALSE)
A <- para$para[2]
op <- options()
GO <- TRUE
if(nowarn == TRUE) options(warn=-1)
if(A <= 0) {
warning("Parameter A is not > 0, invalid")
GO <- FALSE
}
options(op)
if(GO) return(TRUE)
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.