Constrain regression coefficients to be equal
1 次查看(过去 30 天)
显示 更早的评论
Hi guys,
I'm working on a code where I want to compare multiple regression models, one completely free, and one where the regression coefficients of the IV's are constrained to be equal.
In R (lavaan package) I would be able to constrain them like this -- Dependent ~ coef * Independent1 + coef * Independent2 (just for reference)
How can I do this in Matlab?
0 个评论
采纳的回答
Jeff Miller
2020-10-18
Make a new variable with
IndependentSum = Independent1 + Independent2;
and then fit the model with
Dependent~IndependentSum
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!