Nothing
#-----------------------------------------------------------------------------------
getSmo <- function(object, what = c("mu", "sigma", "nu", "tau"), parameter= NULL, which=1)
{
if (!is.gamlss(object)) stop("this is design for gamlss objects only")
what <- if (!is.null(parameter)) {
match.arg(parameter, choices=c("mu", "sigma", "nu", "tau"))} else match.arg(what)
if (!what%in%object$par) stop(paste(what,"is not a parameter in the object","\n"))
#evalq(paste("object$",what,"[", which, "]",sep=""))
AllSmo <- object[[paste(what,".coefSmo",sep="")]]
Smo <- if (which==0) AllSmo else AllSmo[[which]]
Smo
}
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.