Learn R Programming

convdistr (version 1.6.1)

fitdirichlet: Fits a Dirichlet distribution,

Description

Fits a Dirichlet distribution based on the parameters of Beta distributions

Usage

fitdirichlet(..., plotBeta = FALSE, n.fitted = "opt")

Value

a vector with the parameters for a Dirichlet distribution

Arguments

...

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

Author

John J. Aponte

Details

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

See Also

fitDirichlet

Examples

Run this code
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)

Run the code above in your browser using DataLab