BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
matthewdye14
Calcite | Level 5
 

Hello, 

 

I am trying to build a predictive logistic regression model in SAS Enterprise Guide by using the following code: 

 

proc logistic data=loe_pred_int_train desc plots(only)=(roc(id=obs) effect);
class &classvars ;
model engage = &varlist &int_top100 / selection=forward slentry=0.05 ;
score data=loe_pred_int_val out= sco_validate_int(rename=(p_1=p_forward_05)) ;
run ;

 

The original dataset that I am using contains over 13,000 rows and the macro's &varlist and &int_top100 contain over 400 variables together. I then did a 60/40 split from this original dataset into loe_pred_int_train and loe_pred_int_val, respectively. When I try to run the above code, I receive the following error: 

 

ERROR: Java virtual machine exception. java.lang.OutOfMemoryError: GC overhead limit exceeded.

 

After googling this error, I have learned that this error has occurred because my Java Virtual Machine does not have a large enough memory to process the statement. It is recommended that I increase the JRE parameters -Xms and -Xmx in the SAS 9 config file (SASV9.CFG) to resolve this issue. Here is a link to where I found this solution: http://support.sas.com/kb/31/184.html

 

My question is if anyone knows how to resolve this issue WITHOUT having to change the JRE parameters? Is there an option that I can add to my code to temporarily expand my VM memory so that the statement can be executed? Additionally, SAS still produces an output from the code despite this error. Is this output valid? 

 

Any sort of information would be very helpful. Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
FriedEgg
SAS Employee

As mentioned in the SAS Usage Note you already shared here, the issue would likely be due to creating the requested plot. All other output is probably reliable, and you could verify that be rerunning the logistic regression with plots=none.

You cannot modify JRE parameters without modifying either the command line for SAS or the config file.

You may be able to still request this plot by modifying your ODS options for the plot, here is a list of options affecting ODS memory usage for graphs.

P.S. You should not post the same question to multiple community forum areas...

View solution in original post

4 REPLIES 4
ChrisHemedinger
Community Manager

I'm guessing that the Java error results from the "plots" part of the code.  If you left off the plots, it will probably run without error.

 

But you probably want the plots, which is why you have them in the program.  Maybe the ROC plot will result in more plot points than a typical analysis and that causes the exception.  Consider leaving off the plot for now, and perhaps experiment with different plots on the output data that might be useful.  You don't say what version of SAS you're using -- it's possible that this is something that is fixed in a more recent version.  

 

Chris

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.
FriedEgg
SAS Employee

As mentioned in the SAS Usage Note you already shared here, the issue would likely be due to creating the requested plot. All other output is probably reliable, and you could verify that be rerunning the logistic regression with plots=none.

You cannot modify JRE parameters without modifying either the command line for SAS or the config file.

You may be able to still request this plot by modifying your ODS options for the plot, here is a list of options affecting ODS memory usage for graphs.

P.S. You should not post the same question to multiple community forum areas...

ChrisHemedinger
Community Manager

I fixed that link.

It's time to register for SAS Innovate! Join your SAS user peers in Las Vegas on April 16-19 2024.

sas-innovate-2024.png

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

Register now!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 4 replies
  • 16253 views
  • 1 like
  • 4 in conversation