I have a dataset to do a logistic regression for the dependent variable "childbirth" which is qualitative binary.
With the command below I get the univariate logistic model:
GLM.1 <- glm(parto ~ serie, family=binomial(logit), data=Dataset)
With this other command below I get the p-value of the chi-square of the likelihood ratio test.
1-pchisq(GLM.1$null.deviance-GLM.1$deviance, GLM.1$df.null-GLM.1$df.residual)
What commands should I use to find each of the following components separately?