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
Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.
Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.
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.