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 (August 2007, week 2)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Mon, 13 Aug 2007 19:51:28 -0500
Reply-To:     "data _null_;" <datanull@GMAIL.COM>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         "data _null_;" <datanull@GMAIL.COM>
Subject:      Re: Proc LOGIST
Comments: To: Cornel Lencar <clencar@interchange.ubc.ca>
In-Reply-To:  <200708140039.l7DJJWlO017579@mailgw.cc.uga.edu>
Content-Type: text/plain; charset=ISO-8859-1

Seems like before there was PROC LOGISTIC there was a procedure in the SUGI Supplemental Library (the green guide) called LOGIST. If I am correct it was superseded by LOGISTIC. Interestingly calling LOGIST gets you LOGISTIC see below. Sorry I don't have any more information.

7 proc logist data=sashelp.class; 8 model sex = weight; 9 run;

NOTE: PROC LOGISTIC is modeling the probability that Sex='F'. One way to change this to model the probability that Sex='M' is to specify the response variable option EVENT='M'. NOTE: Convergence criterion (GCONV=1E-8) satisfied. NOTE: There were 19 observations read from the data set SASHELP.CLASS. NOTE: PROCEDURE LOGIST used (Total process time): real time 0.00 seconds cpu time 0.00 seconds

On 8/13/07, Cornel Lencar <clencar@interchange.ubc.ca> wrote: > Hi, > > I was asked if i know anything about PROC LOGIST (as opposed to PROC > LOGISTIC) and if I have any info/materials about this procedure. I did a > bit search but couldn't find anything so I am asking the SAS-list if it > exists such a procedure. I was asked in good faith so I don't think is a > prank. I became curious after not finding anything about this procedure. > > Sincerely, > > Cornel Lencar >


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