Solved – How to convert the odds standard error to probability standard error

categorical datalogisticodds-ratioprobabilitystandard error

I have conducted a logistic regression analysis using dummy variables in R. I would like to convert the outputted oddsratio standard error to probability (interpreted as risk) standard error. I am able to convert the outputted odds ratio to risk through:

  1. ln(odds) = intercept + ln(odds ratio)
  2. odds = exp(ln(odds))
  3. risk = odds / (1+odds)

How should I convert the odds ratio standard error to risk standard error or confidence intervals?

Thanks!

Best Answer

Work on the log scale for as long as you can and then convert to the scale of odds at the last moment. So compute the confidence interval on the log scale and then convert the limits and the estimate to the odds scale as in your step 2. I suppose you could compute a standard error for the odds using the delta method but the way I suggest is simpler I believe.

Related Question