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;

Catch up on SAS Innovate 2026

Nearly 200 sessions are now available on demand in the Innovate Hub.

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