## File Name: mdmb_extract_coef.R
## File Version: 0.03
mdmb_extract_coef <- function(mod)
{
if ('coef' %in% names(mod) ){
c1 <- mod$coef
} else {
c1 <- mod$coefficients
}
return(c1)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.