Hi Miles,
1. The Wald based standard errors (and p-values) are included in the
Analysis of Deviance table.
2. The parameters and AIC are included in the summary table.
3. For log-likelihood look at the -.5 * residual deviance. (also see
logLik function in R).
4. You don't actually want R^2 as it doesn't have much meaning outside
linear models.
5. You can view the pearsons residuals in the diagnostic plots, but
they are not output by the GUI (look at help("residuals.glm") for how
to get them in R).
6. For the classification table, go to Export --> predicted. Then go
to Data --> Recode, and recode predicted >= .5 into 1 and otherwise
into 0. Then go to Analysis --> Contingency Tables and compare your
predicted classifications to the original outcome variable. (yes, this
is a lot of steps, but I think the classification table misleads a lot
of people, especially when the occurrence is rare).
Ian