Advertisement
Alex987

Untitled

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