强制 PROC REG 中的所有系数为负数

发布于 2024-10-12 11:39:33 字数 191 浏览 2 评论 0原文

我想知道是否有一种方法可以强制 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

失退 2024-10-19 11:39:33

直接来自来源:我可以对 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文