LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (October 1997, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Tue, 14 Oct 1997 04:11:16 +0100
Reply-To:     Jeroen Liefhebber <datastep@PI.NET>
Sender:       "SAS(r) Discussion" <SAS-L@UGA.CC.UGA.EDU>
From:         Jeroen Liefhebber <datastep@PI.NET>
Organization: Datastep
Subject:      Re: A question on PROBIT
Comments: To: Yize Wang <wang48@WHARTON.UPENN.EDU>
Content-Type: text/plain; charset=us-ascii

Yize Wang wrote: > > Hi, SAS-Lers: > > I am using the probit model to see how personal characteristics influence > the probability of getting insured. My program works like this: > > PROC PROBIT; > CLASS COVERAGE; > MODEL COVERAGE = Age Sex Occupation ....; > RUN; > > I use COVERAGE=1 for those with insurance and COVERAGE=0 for those > uninsured. What I think is that a positive coefficient tells that > the higher this parameter, the more likely the person is insured. > > However, the coefficients is just opposite to what I think should > be. I refer to SAS/STAT manual and it says that "the probability of the > LOWER value of the dependent variable is modelled in the probit > procedure". If this is true, what the above model tells me is how these > independent variables contribute to the risk of being UNINSURED. > > I wonder any of you have experience with the PROBIT and can help me with > this. Thanks in advance. > > -- > Yize Wang > Department of Health Care Systems > University of Pennsylvania

Try

PROC PROBIT DATA=.. ORDER=INTERNAL ;

The results of probit-estimations depend on the order in which the observations are read from the data-set you are using within each value of the dependent class-variable.

/* Jeroen Liefhebber */ /* */ /* Datastep SAS Software Consulting */ /* Luchthavenweg 81 */ /* P.O. Box 4985 */ /* 5604 CD Eindhoven */ /* The Netherlands */ /* e-mail Jeroen.Liefhebber@datastep.nl */


Back to: Top of message | Previous page | Main SAS-L page