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
Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!
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.