View source: R/helper_functions.R
fitdirichlet | R Documentation |
Fits a Dirichlet distribution based on the parameters of Beta distributions
fitdirichlet(..., plotBeta = FALSE, n.fitted = "opt")
... |
named vectors with the distribution parameters shape1, shape2 |
plotBeta |
if TRUE a ggplot of the densities are plotted |
n.fitted |
Method to fit the values |
Each one of the arguments is a named vector with values for shape1, shape2.
Values from fitbeta
are suitable for this.
This is a wrap of fitDirichlet
a vector with the parameters for a Dirichlet distribution
John J. Aponte
fitDirichlet
a <- fitbeta(0.3, 0.2, 0.4)
c <- fitbeta(0.2, 0.1, 0.3)
b <- fitbeta(0.5, 0.4, 0.6)
fitdirichlet(cat1=a,cat2=b,cat3=c)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.