35 PROC RSREG DATA=Work.Test2 PLOTS=(DIAGNOSTICS RIDGE);
-----
22
76
ERROR 22-322: Syntax error, expecting one of the following: ;, (, DATA, DEBUG, EPSILON, NOPRINT,
OUT.
ERROR 76-322: Syntax error, statement will be ignored.
36 MODEL BY SY = year treat rep / LACKFIT VIF TOL XPX COVB;
---
22
76
ERROR: No data set open to look up variables.
ERROR: No data set open to look up variables.
ERROR: No data set open to look up variables.
ERROR: No data set open to look up variables.
ERROR: No data set open to look up variables.
ERROR 22-322: Syntax error, expecting one of the following: ;, /, ACTUAL, BYOUT, COOKD, COVAR, D,
DUMMY, L95, L95M, LACKFIT, NOANOVA, NOAOV, NOCODE, NOOPT, NOOPTIMAL, NOPRINT, PREDICT,
PRESS, RESIDUAL, U95, U95M.
ERROR 76-322: Syntax error, statement will be ignored.
As stated in the log VIF,TOL,XPX, COVB are not valid PROC RSREG Model statments options. MODEL Statement
Also you forget the semicolon after the title statments as in the nest log Warning.
39 PROC REG DATA=Work.Test2 outest=est1 outsscp=sscp1 rsquare;
40 Title'PP Plot'
41 MODEL BY SY = NLATOT WLATOT cycloxidim1/ noprint;
WARNING: The TITLE statement is ambiguous due to invalid options or unquoted text.
... View more