BookmarkSubscribeRSS Feed
Sourav_P20
Calcite | Level 5
proc mixed data=WORK.IMPORT1 method=ml;
70 class SubjectID;
71 model Y1 Y2 = TIME / solution;
__
73
202
ERROR 73-322: Expecting an =.
ERROR 202-322: The option or parameter is not recognized and will be ignored.
72 random Intercept TIME / subject=SubjectID type=un;
73 run;
74
75 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
85
1 REPLY 1
Ksharp
Super User
You can not have TWO Y variables in model.
either
model Y1 = TIME / solution;
or
model Y2 = TIME / solution;

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

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