Nothing
grad <- function(x,distr=c("db","betabinom"),gpar) {
distr <- match.arg(distr)
switch(EXPR=distr,
db = gradDb(x,gpar),
betabinom = gradBb(x,gpar)
)
}
hess <- function(x,distr=c("db","betabinom"),hpar) {
distr <- match.arg(distr)
switch(EXPR=distr,
db = hessDb(hpar),
betabinom = hessBb(x,hpar)
)
}
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.