|
Chapter Contents |
Previous |
Next |
| The LOGISTIC Procedure |
proc logistic;
class x2 / param=ref;
model y=x1 x2;
exact x1 x2 / outdist=dist;
proc print data=dist;
run;
The data set contains the possible sufficient statistics of the parameters for the effects specified in the EXACT statement, and the Count variable contains the number of different responses that yield these statistics. For example, there were six possible response vectors y for which the product y'x1 was equal to 2, and for which y'x20, y'x21, and y'1 were equal to their actual observed values (displayed in the "Sufficient Statistics" table). When hypothesis tests are performed on the parameters, the Prob variable contains the probability of obtaining that statistic (which is just the count divided by the total count), and the Score variable contains the score for that statistic. For more information, see the "EXACT Statement Examples" section.
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 2000 by SAS Institute Inc., Cary, NC, USA. All rights reserved.