Description Usage Arguments References Examples
Compare directly standardized rates by ratios or differences.
1 2 |
data |
A data frame with counts and unit-times summarized by the standardization variables. |
event |
A variable within the input data that corresponds to the event counts. |
fu |
A variable within the input data that corresponds to the unit-time. |
subgroup |
A variable within the input data frame for which rates are calculated by. |
... |
Variables(s) within the input data that for which rates are to be standardized by. The input data and ref data should both be summarized by these. |
refdata |
A data frame with population unit-times summarized by the standardization variables. The unit-time variable name must named pop. |
estimate |
Choose between difference or ratio in comparing directly standardized rates. |
refgroup |
A level of the subgroup variable taken to be the reference in computing rate ratios or differences. |
mp |
A constant to multiply rates by (e.g. mp=1000 for rates per 1000). |
sig |
The desired level of confidence in computing confidence intervals. The default is 0.95 for 95 percent CIs. |
decimals |
Round estimates to a desired decimal place. |
Fay, M.P., & Feuer, E.J. (1997). Confidence intervals for directly standardized rates: a method based on the gamma distribution. Statistics in Medicine,16, 791-801.
Elandt-Johnson, R. C., and Johnson, N. L. (1980). Survival Models and Data Analysis. New York: John Wiley & Sons.
Chiang C. Standard error of the age-adjusted death rate. US Department of Health, Education and Welfare: Vital Statistics Special Reports 1961;47:271-285.
Schoenbach, V., and Rosamond W. (2000) Understanding the fundamentals of epidemiology: An evolving text.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #An example of comparing directly standardized rates
#Data from Table 1, Page 132 of Schoenbach (2000)
#State specific death counts and fu
df_study <- data.frame(state=rep(c('Miami',"Alaska"), c(5,5)),
age=rep(c('00-14','15-24','25-44','45-64','65+'),2),
deaths=c(136,57,208,1016,3605,59,18,37,90,81),
fu=c(114350,80259,133440,142670,92168,37164,20036,32693,14947,2077))
#US standard population
df_ref <- data.frame(age=c('00-14','15-24','25-44','45-64','65+'),
pop=c(23961000,15420000,21353000,19601000,10685000))
#Directly Standardized Rate Ratio (per 1000) - 95% log-normal CI's, Alaska as the refernce
my_results2 <- dsrr(data=df_study,
event=deaths,
fu=fu,
subgroup=state,
age,
refdata=df_ref,
refgroup="Alaska",
estimate="ratio",
sig=0.95,
mp=1000,
decimals=4)
#View results
my_results2
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.