Life-tables for Health Impact Assessments¶

This notebook explores life-table calculations commonly used in health impact assessments (HIAs). Life-tables are a fundamental tool in epidemiology and public health for estimating the impact of changes in mortality risk on life expectancy.

In [ ]:
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import seaborn as sns

sns.set_style("whitegrid")