Nothing
## activePar: returns parameters which are free under maximisation (not fixed as constants)
activePar <- function(x, ...)
UseMethod("activePar")
activePar.default <- function(x, ...) {
if( !is.null( x$fixed ) ) {
result <- !x$fixed
} else {
result <- x$activePar
}
if( is.null( result ) ) {
result <- rep( TRUE, length( coef( x ) ) )
}
return( result )
}
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.