+1 vote
in SAS by

What is the syntax for the PROC GEE procedure and also mention required statements?

1 Answer

0 votes
by
  1. PROC GEE DATASET
  2. CLASS <variable>;
  3. MODEL response= effects <options>;
  4. REPEATED subject=subject effects/<options>;

The PROC GEE, MODEL, and REPEATED statements are required.

Related questions

+1 vote
asked Jun 11, 2020 in SAS by JackTerrance
+1 vote
asked Jun 11, 2020 in SAS by JackTerrance
...