For the model structure:
$$x \sim Gaussian(X beta,sigma^2)$$
$$sigma^2 \sim InvGamma(a,b)$$
$$beta \sim Gaussian(m,sigma^2 V)$$
Where X is a row vector, or a design matrix where each row is an obervation. InvGamma() is the Inverse-Gamma distribution, Gaussian() is the Gaussian distribution. See ?dInvGamma
and dGaussian
for the definitions of these distribution.
The model structure and prior parameters are stored in a "GaussianNIG" object.
Update (m,V,a,b) by adding the information of newly observed samples (x,X). The model structure and prior parameters are stored in a "GaussianNIG" object, the prior parameters in this object will be updated after running this function.