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

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