Generate the marginal likelihood of the following model structure:
$$x \sim Gaussian(mu,Sigma)$$
$$Sigma \sim InvWishart(v,S)$$
mu is known. Gaussian() is the Gaussian distribution. See ?dGaussian
and ?dInvWishart
for the definition of the distributions.
The model structure and prior parameters are stored in a "GaussianInvWishart" object.
Marginal likelihood = p(x|v,S,mu)
# S3 method for GaussianInvWishart
marginalLikelihood_bySufficientStatistics(obj, ss, LOG = TRUE, ...)
A "GaussianInvWishart" object.
Sufficient statistics of x. In Gaussian and Inverse-Wishart case the sufficient statistic of sample x is a object of type "ssGaussianVar", it can be generated by the function sufficientStatistics().
Return the log density if set to "TRUE".
Additional arguments to be passed to other inherited types.
numeric, the marginal likelihood.