home *** CD-ROM | disk | FTP | other *** search
- Comments: Gated by NETNEWS@AUVM.AMERICAN.EDU
- Path: sparky!uunet!stanford.edu!bcm!rice!newsfeed.rice.edu!wupost!zaphod.mps.ohio-state.edu!darwin.sura.net!paladin.american.edu!auvm!CCMAIL.ORST.EDU!SABINT
- Message-ID: <9211061028.A16042@ccmail.orst.edu>
- Newsgroups: bit.listserv.stat-l
- Date: Fri, 6 Nov 1992 10:28:15 PST
- Sender: "STATISTICAL CONSULTING" <STAT-L@MCGILL1.BITNET>
- From: "Thomas E. Sabin" <sabint@CCMAIL.ORST.EDU>
- Subject: Re: Precision Probability for Chi Square statistics
- Lines: 25
-
- > I have a set of chi square statistics (goodness of fit measures)
- >that I wish to compare. I have used the PROBCHI function in SAS
- >(probability = PROBCHI (value, df)) to estimate the probability
- >of each chi square value. I've run into the problem that the
- >function cannot produce a probability value precise enough to
- >distinguish between the significance of chi square values.
-
- Try using the PUT command instead of PROC PRINT. For example,
-
- DATA _NULL_;
- P = 1 - PROBCHI(25.62,1);
- PUT P;
- RUN;
-
- gives:
-
- 4.1570832E-7
-
- **************************************************************************
- * Tom Sabin | sabin@fsl.orst.edu *
- * Statistical Consultant \|/ (503) 737-6577 *
- * Dept. Forest Science \\|// *
- * Oregon State University \\\|/// *
- * Corvallis, Oregon 97331 | *
- **************************************************************************
-