home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / bit / listserv / sasl / 5775 < prev    next >
Encoding:
Text File  |  1993-01-28  |  1.6 KB  |  39 lines

  1. Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
  2. Path: sparky!uunet!uvaarpa!darwin.sura.net!bogus.sura.net!howland.reston.ans.net!paladin.american.edu!auvm!CUMC.CORNELL.EDU!TOTHAV
  3. Posted-Date: Tue, 26 Jan 1993 20:17:50 -0500 (EST)
  4. Mime-Version: 1.0
  5. Content-Type: TEXT/PLAIN; charset=US-ASCII
  6. Message-ID: <Pine.3.05.9301262050.D19079-a100000@cumc.cornell.edu>
  7. Newsgroups: bit.listserv.sas-l
  8. Date:         Tue, 26 Jan 1993 20:17:50 -0500
  9. Reply-To:     Arpad Vincent Toth <tothav@CUMC.CORNELL.EDU>
  10. Sender:       "SAS(r) Discussion" <SAS-L@UGA.BITNET>
  11. From:         Arpad Vincent Toth <tothav@CUMC.CORNELL.EDU>
  12. Subject:      PROC CATMOD on PC 6.03
  13. Lines: 24
  14.  
  15.         I'm new to the group and my first question is to anyone who has
  16. experience using this PROC to look at categorical data.  My example is
  17. from Fienberg, ...Cross-Classified Cat. Data...Table 6.1
  18. My code:
  19. data seed; input type $ treatmnt $ outcome $ numcell @; cards;
  20. t1 h d 41
  21. t1 h za 59
  22. t1 l d 11                            /*t1=long leaf/ t2=slash*/
  23. t1 l za 89                           /*treatmnt h=high l=low*/
  24. t2 h d 12                            /*outcome d=dead za=alive*/
  25. t2 h za 88
  26. [Bt2 l d 5
  27. t2 l za 95;
  28. proc catmod data=seed;
  29. weight numcell;
  30. model type * treatmnt * outcome=_response_/nogls noparm noresponse;
  31. loglin type|treatmnt|outcome @2; run;
  32.  
  33. SAS/STAT User's Guide (REL 6.03) gives examples but doesn't explain
  34. it very well.  Any suggestions?  I'm particularly interested in the
  35. log linear model, looking at different interactions.  The chi square
  36. gives me a start but I want to look deeper into the data.
  37.  
  38. Thanks in advance for any tips/suggestions.
  39.