2
I have a data set to make the logistic regression of the dependent variable childbirth which is binary qualitative.
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 should I use to get the BETA CONFIDENCE INTERVAL and also the OR CONFIDENCE INTERVAL for the series independent variable.
If you need to use a specific R package for this, I would like to know what this package would be and what function to use.
Thank you Rafael Cunha, you helped me a lot to solve my problem!!
– Kaluce