Percentage (%)
Per 1,000 People
Per 10,000 People
Per 100,000 People
Cumulative Incidence:0
function calculateIncidenceRate() {
var n = parseFloat(document.getElementById("newCases").value);
var N = parseFloat(document.getElementById("totalPopulation").value);
var multiplier = parseFloat(document.getElementById("displayMultiplier").value);
var resultDiv = document.getElementById("incidenceResult");
var valSpan = document.getElementById("incidenceVal");
var textDiv = document.getElementById("incidenceText");
var breakdown = document.getElementById("calcBreakdown");
if (isNaN(n) || isNaN(N) || N N) {
alert("Number of cases cannot exceed the total population at risk.");
return;
}
var incidence = (n / N) * multiplier;
var rawProportion = n / N;
resultDiv.style.display = "block";
valSpan.innerHTML = incidence.toLocaleString(undefined, {minimumFractionDigits: 0, maximumFractionDigits: 4});
var unitLabel = "";
if (multiplier === 100) unitLabel = "%";
else if (multiplier === 1000) unitLabel = " per 1,000 people";
else if (multiplier === 10000) unitLabel = " per 10,000 people";
else if (multiplier === 100000) unitLabel = " per 100,000 people";
valSpan.innerHTML += unitLabel;
textDiv.innerHTML = "This means that " + ((n/N)*100).toFixed(2) + "% of the population developed the condition during the specified time period.";
breakdown.innerHTML = "Formula: (" + n + " / " + N + ") × " + multiplier + " = " + incidence.toFixed(4);
}
Understanding Cumulative Incidence
Cumulative incidence is a fundamental measure in epidemiology used to estimate the risk of developing a specific disease or condition over a defined period of time. It provides a "snapshot" of the probability that an individual in a population will become a case during that time frame.
The Cumulative Incidence Formula
To calculate cumulative incidence, you use the following formula:
Cumulative Incidence = (Number of New Cases / Total Population at Risk at Start) × 10n
Key Components
New Cases (Numerator): Only individuals who were previously free of the disease but developed it during the study period are counted.
Population at Risk (Denominator): This includes everyone in the group being studied who does not have the disease at the start of the observation period but is capable of developing it.
Time Period: Cumulative incidence is meaningless without a defined time interval (e.g., a 1-year incidence, a 5-year incidence).
Cumulative Incidence vs. Incidence Rate
While often used interchangeably, they are different:
Cumulative Incidence: Measures the proportion of people who get sick. It assumes everyone is followed for the entire duration. It is a measure of risk.
Incidence Rate (Incidence Density): Uses "person-time" in the denominator. It accounts for people entering or leaving the study at different times. It is a measure of speed.
Real-World Example
Imagine a clinical study tracking 2,000 healthy men over 5 years to see how many develop hypertension. At the end of the 5 years, 150 men have been diagnosed with the condition.
New Cases: 150
Population at Risk: 2,000
Calculation: (150 / 2,000) = 0.075
Result: 7.5% or 75 cases per 1,000 people over 5 years.
Why is it Important?
Cumulative incidence helps public health officials and researchers understand the burden of a disease in a specific community. By comparing cumulative incidence between two groups (e.g., smokers vs. non-smokers), researchers can calculate the Relative Risk, which helps identify the primary causes of health issues.