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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

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