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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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
  • 307 views
  • 0 likes
  • 2 in conversation