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.