Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- NOTE: Writing HTML Body file: sashtml.htm
- 100 proc genmod data=sas_stata;
- 101 class age_group_var id CPSUM CSTRATM;
- 102 model DIETNUTR = age_group_var/ dist = poisson link = log;
- 103 weight PATWT;
- 104 x = CPSUM(CSTRATM)
- 105 repeated subject = id * x/ type = unstr;
- --------
- 22
- 76
- ERROR 22-322: Syntax error, expecting one of the following: ;, !, !!, &, *, **, +, -, /, <, <=,
- <>, =, >, ><, >=, AND, EQ, GE, GT, IN, LE, LT, NE, NOTIN, OR, ^<, ^=, ^>, |, ||,
- ~<, ~=, ~>.
- ERROR 76-322: Syntax error, statement will be ignored.
- 106 estimate 'Beta' age_group_var 1 -1/ exp;
- 107 run;
- NOTE: The SAS System stopped processing this step because of errors.
- NOTE: PROCEDURE GENMOD used (Total process time):
- real time 0.77 seconds
- cpu time 0.23 seconds
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement