Run the following to determine the MEMSIZE
data _null_;
FREERAM_MB=input(getoption('xmrlmem'),20.)/1024/1024;
put FREERAM_MB= 8.;
run;
proc options group=memory; run;
In my eyes your MEMSIZE is most likely to small - talk to your Admins about it
Run the following to determine the MEMSIZE
data _null_;
FREERAM_MB=input(getoption('xmrlmem'),20.)/1024/1024;
put FREERAM_MB= 8.;
run;
proc options group=memory; run;
In my eyes your MEMSIZE is most likely to small - talk to your Admins about it
You are describing a very small problem.
1. Please post the exact code you are submitting, including options
2. Please run the following code on simulated data and tell us if it runs successfully
data Have;
call streaminit(123);
do i = 1 to 9253;
group = rand('Table', 0.3, 0.3, 0.2, 0.2); /* group = 1, 2, 3 or 4 */
Y = 10 + group + rand('Normal');
output;
end;
run;
proc surveyreg data=Have;
cluster Group;
model Y = Group;
run;
Thank you so much for your effort
Catch the best of SAS Innovate 2025 — anytime, anywhere. Stream powerful keynotes, real-world demos, and game-changing insights from the world’s leading data and AI minds.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.