BookmarkSubscribeRSS Feed
Annie_Fréchette
Obsidian | Level 7

Hi! How can I bypass or resolve this problem in my log... I am tryin to create a model where I have multiple SCC_linear_score by lactation, multiples lactations by cow and multiple cows by herd, and of course multiple herds.

proc sort data=qulac;
by No_ferme cow jr_test;
run;

proc mixed data=qulac order=data /*method=ml*/;
class type_lit cow No_ferme Lac;
model SCC_linear_score=type_lit  /solution cl;
random intercept /subject=No_ferme;
random intercept/subject=Cow (No_ferme);
Repeated /subject=lac (cow No_ferme) type=toep;
lsmeans type_lit / cl;
run;

Here's a print screen form my log.

Annie_Fréchette_0-1595516068915.png

 

Thanks a lot!!

1 REPLY 1
ballardw
Super User

Not a trivial issue. Please review the computational details for Proc Mixed at https://documentation.sas.com/?cdcId=pgmsascdc&cdcVersion=9.4_3.4&docsetId=statug&docsetTarget=statu...

This will give you an idea on how to estimate what memory need is being caused and may a have couple of pointers on addressing the issue.

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!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

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