Nothing
# Returns the appropriate residual type for each GAM family
.getResTypeAndMethod <- function(fam){
type <- "deviance"
method <- "simul1"
if( !is.null(fam$cdf) ){
type <- "tnormal"
method <- "tnormal"
}
return( list("type" = type, "method" = method) )
}
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.