Rate Mapping

1. Excess Risk

A commonly used notion in demography and public health analysis is the concept of a standardized mortality rate (SMR), sometimes also referred to as relative risk or excess risk. The idea is to compare the observed mortality rate to a national (or regional) standard. More specifically, the observed number of events is compared to the number of events that would be expected had a reference risk been applied.

In most applications, the reference risk is estimated from the aggregate of all the observations under consideration. For example, if we considered all the counties in Ohio, the reference rate would be the sum of all the events over the sum of all the populations at risk. Note that this average is not the average of the county rates. Instead, it is calculated as the ratio of the total sum of all events over the total sum of all populations at risk (e.g., in our example, all the white female deaths in the state over the state white female population).

For more information, please read https://geodacenter.github.io/workbook/3b_rates/lab3b.html

excess_risk()

Array excessRisk(Array eventVariable, Array baseVariable);

2. Empirical Bayes (EB) Smoothed Rate

In many applications, rates are used to estimate the underlying risk (such as disease or crime). However, when raw rates are used to estimate this underlying risk, differences in population size result in variance instability and spurious outliers. Rate smoothing is one way to address this variance instability. Essentially, rates are smoothed and thus stabilized by borrowing strength from other spatial units.

Empirical Bayes (EB) smoothing is based on a raw rate for each areal unit that is averaged with a separately computed reference estimate based on the whole study region, such as the overall population mean. This smoother is called Empirical Bayes because it borrows strength from a prior distribution to correct for the variance instability associated with rates that have a small base. It is empirical because the prior distribution is based on the global characteristics of the existing observations.

For more information, please read https://geodacenter.github.io/workbook/3b_rates/lab3b.html

eb_rate()

Array ebRate(Array eventVariable, Array baseVariable);

Last updated