截面效应行在哪里?

时间:2013-10-19 21:42:57

标签: sas

根据Ajmani教科书和SAS代码本,这是我在使用fixone选项时应该看到的:

Cross Sectional Effect Rows

这就是我所看到的:

No Cross Sectional Effect Rows

如何获得横截面效果行?这是我正在运行的代码:

libname mydata "/courses/u_northwestern.edu1/i_1055211/c_6538"
      access=readonly;

/*  Create temporary data sets to mess with */
Data week4;
      set mydata.airlines_week_4;
      Ln_C=log(C);
      Ln_Q=Log(Q);
      Ln_PF=Log(PF);
      label
            C='Total cost ($K)'
            I='Firm Number (CSID)'
            LF='Load Factor (utilization index)'
            Ln_C='Log transformation of costs'
            Ln_PF='Log transformation of fuel price'
            Ln_Q='Log transformation of quantity'
            PF='Fuel price'
            Q='Output in revenue passenger miles (index)'
            T='Time period (TSID)';
run;

/*  This is the program given on the top of page 118 and produces Output 7.4 */
proc panel data=week4;
      id i t;
      Output_7: model Ln_C=Ln_Q Ln_PF LF/fixone;
      title 'OUTPUT 7.4. LSDV estimates for the airlines data using Proc panel.';
run;

横截面行在哪里?在任何输出中都没有看到任何横截面效应行。

1 个答案:

答案 0 :(得分:0)

自SAS 9.3TS1M2以来,PROC PANEL的横截面效果的默认打印行为发生了变化。 SAS9.3TS1M2中的默认值不是打印横截面固定效果,而在先前版本中,默认值是打印横截面效果。如果要在SAS9.3TS1M2或更高版本的输出中包含横截面效果,则可以在MODEL语句中使用PRINTFIXED选项。