2

When performing a binomial or multinomial logistic regression, odds ratio (OR) values ​​are generated. Is there any form or program that generates a prevalence ratio value instead of OR?

kjetil b halvorsen
  • 63,378
  • 26
  • 142
  • 467
  • 2
    Yes, probratio in epitools will do the trick, probably not implemented for multinomial regression. https://repitools.wordpress.com/2017/04/14/probratio-converting-ors-to-rrs/ – AdamO Jul 27 '21 at 23:00

1 Answers1

2

One way of estimating the prevalence ratio is with log binomial regression, which can be estimated with any program implementing glm's (generalized linear models). There are also other options.

For more details see glm with log link in binomial family

kjetil b halvorsen
  • 63,378
  • 26
  • 142
  • 467