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-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

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