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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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