Combine `one.lam` and `parsm`
haziqj opened this issue · 1 comments
haziqj commented
On second thought, they do different things.
iprior(y ~ x + grp + x:grp, data=simdat, parsm=F)
uses 3 scale parameters.iprior(y ~ x + grp + x:grp, data=simdat, parsm=T)
uses 2 scale parameters.iprior(y ~ x + grp + x:grp, data=simdat, one.lam=T)
uses 1 scale parameter.
There is no way to achieve the three types of models with just one option. Need both of them.