The HPPANEL Procedure

Specifying the Regression Model

The MODEL statement in PROC HPPANEL is specified like the MODEL statement in other SAS regression procedures: the dependent variable is listed first, followed by an equal sign, followed by the list of regressor variables, as shown in the following statements:

   proc hppanel data=a;
      id state date;
      model y = x1 x2;
      performance nodes=2 nthreads=4;
   run;