Nothing
"cdflap" <-
function(x,para) {
if(! are.parlap.valid(para)) return()
XI <- para$para[1]
A <- para$para[2]
f <- vector(mode="numeric", length=length(x))
Y <- (x - XI)/A
f[x <= XI] <- 0.5*exp( Y[x <= XI])
f[x > XI] <- 1 - 0.5*exp(-Y[x > XI])
names(f) <- NULL
return(f)
}
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.