代码之家  ›  专栏  ›  技术社区  ›  Peter Chen

SAS回归图误差

  •  0
  • Peter Chen  · 技术社区  · 6 年前

    我用 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 回复  |  直到 6 年前