强制 PROC REG 中的所有系数为负数
我想知道是否有一种方法可以强制 proc reg 中的所有非截距系数为正/负。如果我使用:
model depvar=indvar;
RESTRICT indvar<0;
那么我总是会收到语法错误。看起来 Proc reg 只支持方程而不支持不等式?我只是想知道是否有什么方法可以实现这一目标。
I'm wondering if there's a way to force all non-intercept coefficients to be positive/negative in proc reg. If I use:
model depvar=indvar;
RESTRICT indvar<0;
Then I always get a syntax error. Looks like Proc reg only supports equations and not inequalities? I'm just wondering if there's any way to achieve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
直接来自来源:我可以对 PROC REG 中的参数应用不等式约束吗?
简而言之:不可以,但您可以使用 PROC NLIN(非线性回归)和 BOUNDS 语句。
Direct from the source: Can I apply an inequality constraint to the parameters in PROC REG?
In short: no, but you can with PROC NLIN (nonlinear regression) with the BOUNDS statement.