Nothing
mvdisc.mle <- function(x, distr = "multinom", tol = 1e-07) {
if ( distr == "multinom" ) {
res <- Rfast::multinom.mle(x)
} else if ( distr == "dirimultinom" ) {
res <- Rfast::dirimultinom.mle(x , tol = tol)
} else if ( distr == "bp" ) {
res <- bivpois::bp.mle(x1 = x, x2 = NULL)
} else if ( distr == "bp2" ) {
res <- bivpois::bp.mle2(x1 = x, x2 = NULL)
}
res
}
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.