1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
68
69 proc glm data = clover;
70 class strain;
71 model nitrogen = strain;
72 contrast ’diff among K1 - K5’ strain 0 1 -1 0 0 0,
_______
22
76
ERROR 22-322: Expecting a quoted string.
ERROR 76-322: Syntax error, statement will be ignored.
73 strain 0 0 1 -1 0 0,
74 strain 0 0 0 1 -1 0,
75 strain 0 0 0 0 1 -1 / e;
NOTE: The previous statement has been deleted.
76 run;
77
78 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
88 1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
68
69 proc glm data = clover;
70 class strain;
71 model nitrogen = strain / solution;
72 estimate ’avg. of K1-K5 vs. co’ strain -1 0.2 0.2 0.2 0.2 0.2 / e;
_______
22
76
NOTE: The previous statement has been deleted.
ERROR 22-322: Expecting a quoted string.
ERROR 76-322: Syntax error, statement will be ignored.
73 run;
74
75 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;
85 I understand, okay here are two of those examples straight from the log page. The data set worked fine for generating a model before the estimate phrase was added in.
... View more