Market Research Incidence Rate Calculator

.ir-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e1e1e1; border-radius: 8px; background-color: #f9f9f9; color: #333; } .ir-calc-container h2 { color: #2c3e50; text-align: center; margin-bottom: 25px; } .ir-calc-section { background: #fff; padding: 20px; border-radius: 6px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); margin-bottom: 20px; } .ir-calc-row { display: flex; flex-direction: column; margin-bottom: 15px; } .ir-calc-row label { font-weight: 600; margin-bottom: 8px; font-size: 14px; } .ir-calc-row input { padding: 12px; border: 1px solid #ccc; border-radius: 4px; font-size: 16px; } .ir-calc-btn { background-color: #0073aa; color: white; border: none; padding: 15px 20px; border-radius: 4px; font-size: 16px; font-weight: bold; cursor: pointer; width: 100%; transition: background 0.3s; } .ir-calc-btn:hover { background-color: #005177; } .ir-calc-result { margin-top: 20px; padding: 20px; background-color: #e7f3ff; border-radius: 4px; text-align: center; } .ir-calc-result h3 { margin: 0; color: #0073aa; font-size: 24px; } .ir-calc-explanation { font-size: 14px; color: #666; margin-top: 10px; } .ir-article { line-height: 1.6; color: #444; margin-top: 40px; } .ir-article h2 { color: #2c3e50; border-bottom: 2px solid #0073aa; padding-bottom: 10px; margin-top: 30px; } .ir-article h3 { color: #34495e; margin-top: 20px; }

Market Research Incidence Rate Calculator

Your Calculated Incidence Rate (IR):

0%

Predictive Feasibility

Estimate how many people you need to screen to reach your target sample size.

Required Total Screeners:

0

To achieve your target with the given IR, you must invite this many participants.

Understanding Incidence Rate in Market Research

In the field of market research, the Incidence Rate (IR) is one of the most critical metrics for project planning, budgeting, and feasibility assessment. It measures the percentage of a population that fulfills the specific criteria required to participate in a study.

The Incidence Rate Formula

The mathematical calculation for Incidence Rate is straightforward:

IR = (Number of Qualified Respondents / Total Number of People Screened) x 100

Why Does Incidence Rate Matter?

Incidence Rate directly impacts the Cost Per Interview (CPI). If you are looking for "people who own a car," the IR might be 80%, making the study easy and cheap to field. However, if you are looking for "left-handed owners of a specific 1960s vintage car who live in a specific zip code," the IR might drop to 0.5%.

  • Low Incidence (0% – 10%): Hard-to-reach audiences. These studies require more time, higher incentives, and larger recruitment databases.
  • Medium Incidence (10% – 40%): Targeted consumer groups (e.g., users of a specific software).
  • High Incidence (40% – 100%): General population studies or broad consumer categories.

Practical Example

Imagine you are conducting a study on premium coffee drinkers. You send out a screener to 2,000 people. Out of those, 400 people qualify based on your criteria. Using the calculator:

(400 / 2,000) * 100 = 20% IR

If your final goal is to get 1,000 completed surveys, you can use the predictive feasibility section of our tool to determine that you would need to screen approximately 5,000 people in total to hit your target.

Factors That Lower Your Incidence Rate

  1. Strict Demographics: Narrow age ranges, specific household income brackets, or niche geographic locations.
  2. Behavioral Requirements: Requiring participants to have performed a rare action in a short timeframe (e.g., "purchased a jet engine in the last 30 days").
  3. B2B Roles: Targeting C-suite executives or specialized IT decision-makers.
  4. Exclusionary Logic: Removing respondents who work in marketing, journalism, or the industry being studied.
function calculateIR() { var qualified = parseFloat(document.getElementById('qualifiedCount').value); var total = parseFloat(document.getElementById('totalScreened').value); var resultArea = document.getElementById('resultArea'); var irOutput = document.getElementById('irOutput'); var interpretationText = document.getElementById('interpretationText'); if (isNaN(qualified) || isNaN(total) || total total) { alert("Qualified respondents cannot exceed the total number screened."); return; } var ir = (qualified / total) * 100; irOutput.innerHTML = ir.toFixed(2) + "%"; resultArea.style.display = "block"; if (ir < 5) { interpretationText.innerHTML = "This is a very low incidence rate. Expect high recruiting costs and long timelines."; } else if (ir < 20) { interpretationText.innerHTML = "This is a niche audience. Moderate effort is required for recruitment."; } else { interpretationText.innerHTML = "This is a high incidence rate. Data collection should be relatively efficient."; } } function calculateFeasibility() { var target = parseFloat(document.getElementById('targetSample').value); var ir = parseFloat(document.getElementById('estimatedIR').value); var feasibilityArea = document.getElementById('feasibilityArea'); var screenersOutput = document.getElementById('screenersNeededOutput'); if (isNaN(target) || isNaN(ir) || ir <= 0) { alert("Please enter a valid target sample and an estimated incidence rate greater than 0."); return; } var needed = target / (ir / 100); screenersOutput.innerHTML = Math.ceil(needed).toLocaleString(); feasibilityArea.style.display = "block"; }

Leave a Comment