ddir {mombf} | R Documentation |
Dirichlet density
Description
Evaluate the density of a Dirichlet distribution
Usage
ddir(x, q, logscale=TRUE)
Arguments
x |
Vector or matrix containing the value at which to evaluate the density. If a matrix, the density is evaluated for each row. Rows are renormalized to ensure they add up to 1 |
q |
Dirichlet parameters. Must have the same length as
|
logscale |
For |
Value
Density of a Dirichlet(q) distribution evaluated at each row of x
Author(s)
David Rossell
Examples
library(mombf)
x= matrix(c(1/3,2/3,.5,.5),nrow=2,byrow=TRUE)
ddir(x,q=2)
[Package mombf version 3.5.4 Index]