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.