View source: R/incidence_rates.R
incidence_rates | R Documentation |
Compute crude incidence rates
incidence_rates(ncan, py, ncan.min = 5)
ncan |
integer, number of cancer |
py |
integer, number of person-year |
ncan.min |
integer, minimum number of observation required not to mask the CI's out Crude incidence rates and associated 95% confidence interval are computing assuming a Poisson distribution and the exact method. |
a 3 column data.frame containing the crude incidence rate estimate (est) and associated 95% CI (lci, uci)
Boyle P, Parkin DM. Cancer registration: principles and methods. Statistical methods for registries. IARC Sci Publ. 1991;(95):126-58. PMID: 1894318.
epitools::pois.exact()
ncan <- c(1, 10, 100)
py <- c(10, 100, 1000)
incidence_rates(ncan, py, 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.