SAS回归图错误

时间:2018-10-10 23:58:01

标签: error-handling sas regression

我使用proc reg对回归建模并绘制结果。但是,我得到下面的错误。有什么办法解决吗?

ods graphics on;

proc reg data = Work.Cmds PLOTS(MAXPOINTS=NONE);
model Investment = Size Growth_New Leverage complex Deficit pc_income_NEW 
Density/hcc adjrsq ;
output out=CMDSreg r = AbnInvestment; run;

ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.
ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.
NOTE: The SAS System stopped processing this step because of errors.
WARNING: The data set WORK.CMDSREG may be incomplete.  When this step was stopped there were 0 observations and 0 variables.
WARNING: Data set WORK.CMDSREG was not replaced because this step was stopped.
NOTE: PROCEDURE REG used (Total process time):
  real time           1:05.39
  cpu time            13.48 seconds

quit;
ods graphics off;

我浏览了网站here,但仍然听不懂。

注意:
数据集WORK.CMDS具有587831个观测值和142个变量。
enter image description here

0 个答案:

没有答案