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 now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.