I have a set of data to make the logistic regression of the dependent childbirth variable that is qualitative binary.
I use the command below to obtain the univariate logistic model in the R program:
GLM.1 <- glm(parto ~ serie, family=binomial(logit), data=Dataset)
I would like to know which R command I should use to get the BETA CONFIDENCE INTERVAL and also the OR CONFIDENCE INTERVAL for the serial independent variable.
If you need to use a specific R package for this, I would like to know what this package would be and which function to use.