rwishart | R Documentation |
rwishart
draws from the Wishart and Inverted Wishart distributions.
rwishart(nu, V)
nu |
d.f. parameter |
V |
pds location matrix |
In the parameterization used here, W
\sim
W(nu,V)
with E[W]=nuV
.
If you want to use an Inverted Wishart prior, you must invert the location matrix
before calling rwishart
, e.g.
\Sigma
\sim
IW(nu ,V); \Sigma^{-1}
\sim
W(nu, V^{-1})
.
A list containing:
W: |
Wishart draw |
IW: |
Inverted Wishart draw |
C: |
Upper tri root of W |
CI: |
inv(C), |
This routine is a utility routine that does not check the input arguments for proper dimensions and type.
Peter Rossi, Anderson School, UCLA, perossichi@gmail.com.
For further discussion, see Chapter 2, Bayesian Statistics and Marketing by Rossi, Allenby, and McCulloch.
set.seed(66)
rwishart(5,diag(3))$IW
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.