« Derivatives Portal | Main | Fixed Income Securities: Tools for Today's Markets (Tuckman) »

June 01, 2005

two models in one regression

In SAS, you can estimate two distinct models with one call to proc reg.

proc reg data=USPopulation outest=est tableout alpha=0.1;
m1: model Population=Year/noprint;
m2: model Population=Year YearSq/noprint;
proc print data=est;
run;

*]

Posted by omor at June 1, 2005 10:01 PM

Comments

Post a comment

! Comment registration is required but no TypeKey token has been given in weblog configuration!