normalize {dscore} | R Documentation |
Normalize distribution
Description
Normalizes the distribution so that the total mass equals 1.
Usage
normalize(d, qp)
Arguments
d |
A vector with |
qp |
Vector of equally spaced quadrature points. |
Value
A vector of length(d)
elements with
the prior density estimate at each quadature point.
Note
: Internal function
Examples
dscore:::normalize(c(5, 10, 5), qp = c(0, 1, 2))
sum(dscore:::normalize(rnorm(5), qp = 1:5))
[Package dscore version 1.9.0 Index]