Logistic regression in SAS

Here we'll analyze the basketball data using logistic regression. The b-ball data contains data for 1192 shots by Sam Cassell in the NBA 2004-2005 season. The outcome variable is "make" which is 1 if the shot is made and 0 if the shot is missed. There are several predictors including:
To perform logistic regression using pull-down menus:

Or, you can use this sas script in the editor window ("descend" tells SAS to model the probability of a make, not the probability of a miss):

proc logistic data = bball descend;
class kg spree home;
model make = distance scorediff kg spree home fgpA totW time daysrest;
run;