Beta and OR confidence interval

Asked

Viewed 419 times

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.

1 answer

2


For the confidence interval, there is the function confint

confint(GLM.1)

Follows a link which gives a detailed account of Logistic Regression in the R that can assist you with calculating the odds ratio

  • Thank you Rafael Cunha, you helped me a lot to solve my problem!!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.