假设我有一个混合效应模型的以下公式:
Performance ~ 1 + WorkingHours + Tenure + (1 + WorkingHours + Tenure || JobClass)
然后我可以将固定斜率和固定截距的先验指定为:
prior = normal(c(mu1,mu2), c(sd1,sd2), autoscale = FALSE)
prior_intercept = normal(mean, scale, autoscale = FALSE)
但是我如何指定随机斜率的先验并使用截距
prior_covariance = decov(regularization, concentration, shape, scale)
(或者)
lkj(regularization, scale, df)
如果我知道斜率和截距之间的方差以及它们之间的相关性。我无法理解如何为上述混合效果公式指定参数。