Nothing
## File Name: mdmb_regression_extract_parameters.R
## File Version: 0.131
mdmb_regression_extract_parameters <- function( mod, parnames, type,
is_lambda_fixed, lambda_fixed)
{
beta <- mod$par
if ( ( type %in% c('yjt','bct') ) & ( is_lambda_fixed ) ){
beta <- c( beta, lambda_fixed )
parnames <- c(parnames, 'lambda' )
}
names(beta) <- parnames
return(beta)
}
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.