Multivariate mixture of regression Prior model description class
Multivariate mixture of regression Prior model description class
An S4 class to represent a multivariate mixture of regression model. The model follows minka-linear . The model corresponds to the following generative model: [REMOVE_ME]π∼Dirichlet(α)[REMOVEME2]
with W(ϵ−1,n0) the Wishart distribution and MN the matrix-normal distribution. The MoR-class must be used when fitting a simple Mixture of Regression whereas the MoRPrior-class must be used when fitting a CombinedModels-class.
class
MoRPrior(formula, tau =0.001, N0 =NaN, epsilon = as.matrix(NaN))MoR(formula, alpha =1, tau =0.1, N0 =NaN, epsilon = as.matrix(NaN))
Arguments
formula: a formula that describe the linear model to use
N0: Prior parameter (default to NaN, in this case N0 will be fixed equal to the number of columns of Y.)
epsilon: Covariance matrix prior parameter (default to NaN, in this case epsilon will be fixed to a diagonal variance matrix equal to 0.1 time the variance of the regression residuals with only one cluster.)
alpha: Dirichlet prior parameter over the cluster proportions (default to 1)
Returns
a MoRPrior-class object
a MoR-class object
Description
An S4 class to represent a multivariate mixture of regression model. The model follows minka-linear . The model corresponds to the following generative model:
with W(ϵ−1,n0) the Wishart distribution and MN the matrix-normal distribution. The MoR-class must be used when fitting a simple Mixture of Regression whereas the MoRPrior-class must be used when fitting a CombinedModels-class.