在进行proc reg时,
for example:
proc reg data=aaa;
ods output nobs=a anova=b fitstatistics=c parameterestimates=d;
model y=x1 x2;
by company;
quit;
可能是由于数据太大,经常会出现这个对话框:
output window full
windonw is full and must be cleared, select
F
P
S
C to clear the window without saving
我每次都要按c,有什么办法能够不让这个对话框出现,让我的运行步骤 直接跑完?