Beta and OR confidence interval

2

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.

    
asked by anonymous 04.08.2017 / 19:55

1 answer

2

For the confidence interval, there is the function confint

confint(GLM.1)

Following is a link that presents a detail on Logistic Regression in R that can help you with the calculation of odds ratio

    
04.08.2017 / 20:21