Products
People Intelligence
AI-powered sentiment analysis & action planning
Career Intelligence
Adaptive LMS with personalized paths & skills tracking
Candidate Intelligence
AI-driven sourcing & pipeline automation
Enterprise Intelligence
Real-time dashboards, predictive models & custom reports
Platform at a glance
AI Algorithms100+
Use Cases300+
Reports Generated500+
Explore all products
PricingBlogAbout
Schedule Demo
Home
Products
People IntelligenceCareer IntelligenceCandidate IntelligenceEnterprise Intelligence
Pricing
Blog
About
ContactStart Free Trial

Enterprise analytics, survey management, and learning platform that helps organizations understand and develop their people.

Products
  • People Intelligence
  • Career Intelligence
  • Candidate Intelligence
  • Enterprise Intelligence
  • Pricing
Company
  • About
  • Blog
  • Contact
Resources
  • Resources
© 2026 PeoplePilot. All rights reserved.
Privacy PolicyTerms of Service
Back to Blog
analyticsSeptember 13, 2025 9 min read

Compa-Ratio and Pay Parity: A Data-Driven Approach to Fair Compensation

Master compa-ratio analysis for pay equity. Learn calculations, benchmarking methods, demographic pay gap detection, and remediation strategies.

PeoplePilot Team
PeoplePilot

The Pay Equity Question You Cannot Afford to Ignore

Somewhere in your organization right now, two people doing substantially similar work are being paid significantly different amounts — and the gap has nothing to do with performance, tenure, or market conditions. It exists because of compounding historical decisions: different starting salaries, inconsistent raise cycles, manager discretion without guardrails, and the slow drift that happens when compensation is managed in spreadsheets instead of systems.

Pay inequity is not just an ethical problem. It is a retention problem, a legal liability, and increasingly a brand risk as salary transparency laws spread across jurisdictions. The good news: you do not need a PhD in statistics to diagnose and fix it. Compa-ratio analysis gives you a simple, powerful lens to evaluate whether your pay practices are fair — and where they are not.

This guide covers everything from calculating compa-ratios to identifying demographic pay gaps to building a remediation plan that closes disparities without blowing up your compensation budget.

Understanding Compa-Ratio

The Basic Calculation

Compa-ratio (comparative ratio) measures how an employee's pay compares to the midpoint of their salary range:

Compa-Ratio = (Employee's Actual Pay) / (Midpoint of Pay Range) x 100

A compa-ratio of 100 means the employee is paid exactly at the midpoint. Below 100 means they are paid below midpoint; above 100 means they are above it.

What the Numbers Tell You

  • Below 80: Significantly underpaid relative to the range. This employee is either new to the role, a flight risk, or a pay equity concern.
  • 80-95: Below midpoint but within a reasonable range for employees still growing into the role.
  • 95-105: At or near midpoint. This is the target for fully competent performers.
  • 105-120: Above midpoint, typically justified by deep experience, exceptional performance, or critical skill premiums.
  • Above 120: "Red-circled" — paid above the range maximum. This usually indicates the range needs updating or the employee has outgrown their current level.

Group Compa-Ratio

To assess pay positioning for a team, department, or demographic group, calculate the group compa-ratio:

Group Compa-Ratio = (Average Actual Pay of Group) / (Average Midpoint of Group's Ranges) x 100

Group compa-ratios are where pay equity analysis gets powerful. If your female engineers have a group compa-ratio of 89 while male engineers sit at 102, you have a structural gap that individual performance scores cannot explain.

Step 1: Build Your Pay Ranges

Compa-ratio analysis requires established pay ranges. If your organization does not have formal ranges, building them is the essential first step.

Market Pricing

Gather compensation survey data from at least three reputable sources (Radford, Mercer, Payscale, Levels.fyi for tech roles). Match your jobs to survey benchmarks based on role scope, not just title. A "Senior Manager" at a 200-person company may match a "Manager" benchmark at a Fortune 500.

Constructing Ranges

For each job level, set:

  • Minimum: Typically 80-85% of market median (entry point for new-to-role hires)
  • Midpoint: Aligned to market median or your target positioning (50th, 60th, or 75th percentile depending on your compensation philosophy)
  • Maximum: Typically 115-120% of midpoint (ceiling for the role level)

A standard range spread of 40-50% between minimum and maximum works for most professional roles. Broader spreads (50-60%) suit roles with long development curves; narrower spreads (30-40%) suit roles where employees promote quickly.

Aging and Updating

Survey data ages at roughly 3-4% per year due to market movement. Update your ranges annually — or more frequently in hyper-competitive talent markets — to keep compa-ratios meaningful.

Step 2: Calculate Compa-Ratios Across Your Organization

Pull the Data

Extract from your HRIS: employee name (or anonymized ID for sensitive analyses), current base salary, job code, job level, department, location, and the midpoint of their assigned pay range. Add demographic fields for pay equity analysis: gender, race/ethnicity, age band.

Compute Individual Ratios

Calculate compa-ratio for every employee. Sort and filter to quickly identify:

  • Outliers below 80: Immediate review candidates
  • Outliers above 120: Range or level misalignment candidates
  • Clusters by tenure: Are long-tenured employees systematically lower? This indicates your raise practices are not keeping pace with range movement.
import pandas as pd

df['compa_ratio'] = (df['base_salary'] / df['range_midpoint']) * 100

# Summary statistics by department
dept_summary = df.groupby('department')['compa_ratio'].agg(['mean', 'median', 'std', 'min', 'max'])
print(dept_summary.round(1))

Visualize the Distribution

A histogram of compa-ratios across the organization reveals whether your pay practices are centered, skewed, or bimodal. A healthy distribution clusters around 95-105 with manageable tails. A wide, flat distribution signals systemic inconsistency in pay decisions.

Step 3: Analyze Pay Parity Across Demographics

This is where compa-ratio becomes a pay equity diagnostic tool. The question shifts from "are people paid appropriately?" to "are people paid equitably?"

Unadjusted Gap Analysis

Calculate group compa-ratios by gender, race/ethnicity, and their intersections. Compare:

  • Male vs. female compa-ratios within the same job level
  • White vs. non-white compa-ratios within the same department
  • Intersectional groups (e.g., women of color in engineering vs. white men in engineering)

An unadjusted gap tells you there is a problem but not why. A 6-point compa-ratio gap between men and women could reflect pay discrimination, different distributions across job levels, tenure differences, or performance rating disparities.

Adjusted Gap Analysis (Regression)

To isolate the effect of demographic characteristics on pay, run a multivariate regression controlling for legitimate pay-determining factors:

import statsmodels.api as sm

# Control for job level, tenure, performance, location, department
controls = ['job_level', 'years_in_role', 'performance_rating', 'location_factor', 'department']
demographic = ['gender_female', 'race_non_white']

X = df[controls + demographic]
X = sm.add_constant(X)
y = df['compa_ratio']

model = sm.OLS(y, X).fit()
print(model.summary())

The coefficients on your demographic variables tell you the adjusted pay gap — the portion of the gap that remains after accounting for all legitimate factors. A statistically significant negative coefficient on gender_female of -3.2 means that women are paid 3.2 compa-ratio points less than men in equivalent roles, tenure, and performance — a gap that demands remediation.

Intersectional Analysis

Single-dimension analysis (gender alone, race alone) can mask compounding disparities. An organization might show a 2-point gender gap and a 2-point racial gap, but women of color might face a 6-point gap that is invisible when you only look at one dimension at a time. Always examine intersections.

Step 4: Identify Root Causes

Pay gaps rarely have a single cause. Common drivers include:

Starting Salary Negotiation

Employees who negotiate at hire often lock in a permanent advantage. If your organization has historically allowed wide negotiation latitude, starting salary differences compound over time as percentage-based raises amplify the original gap.

Inconsistent Raise Practices

Managers with different calibration standards apply merit increases unevenly. Without centralized oversight, one team might average 4% annual increases while another averages 2%, creating divergence within the same job level.

Promotion Velocity

If certain demographic groups are promoted more slowly, they spend more time at lower pay ranges, depressing their lifetime earnings trajectory within the organization. Analyze time-in-role before promotion by demographic group.

Market Adjustment Gaps

When ranges are updated to reflect market movement, employees hired before the adjustment often fall behind newer hires who entered at the updated range. This "compression" effect disproportionately impacts tenured employees.

Step 5: Build a Remediation Plan

Prioritize Adjustments

Not every gap can be closed in a single cycle. Prioritize based on:

  • Legal risk: Gaps that correlate with protected characteristics and survive adjusted analysis
  • Retention risk: Underpaid high performers in critical roles (use attrition risk models to identify who is most likely to leave)
  • Magnitude: Largest absolute dollar gaps first

Calculate the Budget

Sum the cost of bringing all below-target employees to their appropriate compa-ratio. A typical pay equity remediation costs 1-3% of total payroll in the first year, decreasing in subsequent years as structural fixes take hold.

Implement Structural Guardrails

One-time adjustments fix the symptom. Structural changes fix the cause:

  • Standardize starting salary ranges by job level and geography, reducing negotiation-driven gaps
  • Calibrate merit increases centrally with manager-level compa-ratio reports
  • Automate alerts when a new hire offer or raise would create a demographic pay gap
  • Conduct annual pay equity audits as a recurring operational process, not a one-time project

Connecting Pay Equity to Your People Strategy

Compensation analysis does not exist in isolation. Pay gaps often correlate with engagement gaps, attrition patterns, and learning access disparities.

PeoplePilot Analytics unifies your compensation, engagement, and attrition data so you can see these connections in a single view. When a pay equity analysis reveals that underpaid employees also report lower engagement scores in PeoplePilot Surveys, the case for remediation becomes undeniable. And when PeoplePilot Learning data shows that employees in underpaid segments receive fewer development opportunities, you can address the root cause alongside the pay symptom.

Fair pay is not just a compliance checkbox. It is the foundation of a people strategy that retains talent, builds trust, and earns the discretionary effort that drives business results.

Frequently Asked Questions

How often should we conduct a pay equity analysis?

Conduct a comprehensive analysis annually, timed to inform your merit increase and promotion cycles. Run a lighter quarterly check on compa-ratio distributions to catch emerging gaps before they compound. Organizations in heavily regulated industries or those undergoing rapid growth should consider semi-annual full analyses.

What is an acceptable compa-ratio range for individual employees?

For fully competent performers, target a compa-ratio of 95-105. New hires and employees recently promoted into a role typically land at 85-95 and should progress toward midpoint within 18-24 months. Employees consistently above 115 should be evaluated for promotion to the next level rather than continued raises within the current range.

Can compa-ratio analysis detect pay gaps if our pay ranges are outdated?

Outdated ranges distort compa-ratios because midpoints no longer reflect market reality. Before running a pay equity analysis, update ranges to current market data. If ranges have not been updated in more than two years, your compa-ratio analysis will likely show artificially high ratios and may mask real gaps relative to market competitiveness.

How do we communicate pay adjustments to employees without implying past discrimination?

Frame adjustments as part of a proactive pay equity commitment. Language like "As part of our annual compensation review, we conduct a market and internal equity analysis to ensure all employees are paid fairly for their role, experience, and contribution. Based on this analysis, your compensation has been adjusted to better reflect your value." This positions the adjustment positively without making legal admissions.

#analytics#compensation#data-driven
The Pay Equity Question You Cannot Afford to IgnoreUnderstanding Compa-RatioThe Basic CalculationWhat the Numbers Tell YouGroup Compa-RatioStep 1: Build Your Pay RangesMarket PricingConstructing RangesAging and UpdatingStep 2: Calculate Compa-Ratios Across Your OrganizationPull the DataCompute Individual RatiosVisualize the DistributionStep 3: Analyze Pay Parity Across DemographicsUnadjusted Gap AnalysisAdjusted Gap Analysis (Regression)Intersectional AnalysisStep 4: Identify Root CausesStarting Salary NegotiationInconsistent Raise PracticesPromotion VelocityMarket Adjustment GapsStep 5: Build a Remediation PlanPrioritize AdjustmentsCalculate the BudgetImplement Structural GuardrailsConnecting Pay Equity to Your People StrategyFrequently Asked QuestionsHow often should we conduct a pay equity analysis?What is an acceptable compa-ratio range for individual employees?Can compa-ratio analysis detect pay gaps if our pay ranges are outdated?How do we communicate pay adjustments to employees without implying past discrimination?
Newer Post
Association Mapping for Learning Suggestions: How to Build Data-Driven Course Recommendations
Older Post
Applying the Pareto Principle to Employee Grievances: Focus on the Vital Few

Continue Reading

View All
August 23, 2025 · 11 min read
Designing Effective Compensation Structures: Best Practices for HR Leaders
Build competitive compensation structures with job evaluation, pay grades, salary ranges, geographic differentials, and market data positioning strategies.
August 2, 2025 · 11 min read
A Step-by-Step Guide to Conducting Compensation Benchmarking and Market Research
Follow this step-by-step compensation benchmarking process using Radford, Mercer, and Glassdoor data to build competitive salary ranges.
September 20, 2025 · 11 min read
Infant Attrition: Using Survival Analysis and Logistic Regression to Reduce Early Turnover
Analyze first-90-day attrition with Kaplan-Meier curves and logistic regression. Identify onboarding risk factors and build early intervention programs.