InterviewSolution
Saved Bookmarks
| 1. |
Identify the error in the following code. |
|
Answer» proc MIXED data=SASHELP.IRIS plots=all; MODEL petallength= /; class species; run; Basically, it is a SYNTAX error. In all cases, the MODEL STATEMENT MUST appear after the CLASS statement. |
|