BookmarkSubscribeRSS Feed
preebhat
Calcite | Level 5

Hi!

 

I'm trying to use "proc mixed" for a data set with about 8 million records. The analysis was taking too long and I was wondering why. Finally, it stopped and I got an error message saying SAS stopped processing because of insufficient memory. The warning statement in the log said "class level for ID are not printed because of excessive size." My question is: is there a way to avoid the subject IDs from being printed?

 

Here's the code I'm trying to use:

 

proc mixed data = enews

PLOTS (ONLY) = BOXPLOT

METHOD=REML;

CLASS trt time ID;

MODEL new_click = trt time trt*time / HTYPE=3

SOLUTION

CL

ALPHA = 0.1

DDFM=BETWITHIN

;

RANDOM ID / SUBJECT=ID TYPE=VC;

;

LSMEANS trt time trt*time / PDIFF=ALL ADJUST=BON;

RUN;

1 REPLY 1
sld
Rhodochrosite | Level 12 sld
Rhodochrosite | Level 12

SAS Innovate 2025: Call for Content

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!

Submit your idea!

What is ANOVA?

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.

Discussion stats
  • 1 reply
  • 2098 views
  • 0 likes
  • 2 in conversation