Nothing
comp.mle <- function(x, distr = "diri", type = 1, a = NULL, tol = 1e-07) {
if ( distr == "diri" ) {
res <- Rfast::diri.nr2(x, type = type, tol = tol)
} else if ( distr == "zad" ) {
res <- Compositional::zad.est(x)
} else if ( distr == "afolded" ) {
if ( !is.null(a) ) {
res <- Compositional::alpha.mle(x, a)
} else {
res <- Compositional::a.est(x)
}
}
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.