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;

sas-innovate-white.png

Register Today!

Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9.

 

Early bird rate extended! Save $200 when you sign up by March 31.

Register now!

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