Hello everybody,
I use the program which I show below:
ods graphics on;
proc quantselect data=Sampledata_adjvol plots=all;
class TRD_EVENT_ROUFOR;
model adjusted_volume_5 = TRD_EVENT_ROUFOR
/ quantiles=0.1;
run;
But the process was stopped because of the error which is below:
ERROR: Selection aborted because of insufficient memory for creating simplex tableau.
How can I fix it?
Thanks in advance.
Run your program using OPTIONS FULLSTIMER then check the log. It will report how much memory it is using.
Then run PROC OPTIONS and find out what your MEMSIZE option is set to. A typical value might be 2G (2 gigabytes). You could try a much increased value to see if that gives you enough memory for your program to run.
Run your program using OPTIONS FULLSTIMER then check the log. It will report how much memory it is using.
Then run PROC OPTIONS and find out what your MEMSIZE option is set to. A typical value might be 2G (2 gigabytes). You could try a much increased value to see if that gives you enough memory for your program to run.
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn how to run multiple linear regression models with and without interactions, presented by SAS user Alex Chaplin.
Find more tutorials on the SAS Users YouTube channel.