I am doing a logistic regression model for this database, and I got a C stat of 0.661
44 proc logistic data=amphibians;
45 model rich_site(event='1')= NR SR FR RR;
46 run;
NOTE: PROC LOGISTIC is modeling the probability that rich_site=1.
NOTE: Convergence criterion (GCONV=1E-8) satisfied.
NOTE: There were 189 observations read from the data set WORK.AMPHIBIANS.
NOTE: PROCEDURE LOGISTIC used (Total process time):
real time 0.06 seconds
cpu time 0.00 seconds
This is what I got in the results

Is this good or bad?