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

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 2426 views
  • 0 likes
  • 2 in conversation