Nothing
## Return the #of parameters of model
nParam.maxim <- function(x, free=FALSE, ...) {
if(!inherits(x, "maxim")) {
stop("'nParam.maxim' called on non-'maxim' object")
}
if(free)
sum( activePar( x ) )
else
length( x$estimate )
}
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.