Confidence Intervals Poisson Exposure Adjusted Incidence Rates (EAIR)

Introduction

A unified family of methods covering the single rate and all contrasts for independent Poisson rates was described by Laud^1, with the addition of a bias correction for the OR case^2.

Summary

This page is a placeholder whilst further content is being developed. To date, using the {ratesci} R package developed by Pete Laud compared to using the SAS macro also developed by Pete Laud achieved a full match in results. In one scenario the SAS macro returned an error (whereas R returned valid results), however this was due to the way different computer environments handle floating point rounding. It was fixed by updating rows 449 and 450 of the SAS macro from using 1E-15 (15 decimals) to be 1E-9 (9 decimals).

%else %if "&distrib." = "poi" %then %do;

  D1t = round(tan(pi * max((-1 + 1E-15), min(D1, (1 - 1E-15))) / 2), &converge./100);
  D2t = round(tan(pi * max((-1 + 1E-15), min(D2, (1 - 1E-15))) / 2), &converge./100);
  
%end;
 

References

1) Laud, P. J. Equal-tailed confidence intervals for comparison of rates.Pharmaceutical Statistics16, 334–348 (2017).

2) Laud, P. J. Equal-tailed confidence intervals for comparison of rates.Pharmaceutical Statistics17, 290–293 (2018).