Comparing Team Capabilities to Market Demand in Data & Analytics Roles
Objective
This section evaluates how our team’s current technical capabilities compare to the skills most frequently demanded in the job market for Data & Analytics roles.
Using Lightcast job postings, we extracted software and technical skills commonly requested by employers. We then compared these industry requirements to the team’s self-assessed proficiency levels across key tools such as SQL, Python, Tableau, Power BI, R, and AWS.
The goal is to identify strengths, highlight capability gaps, and provide insights that can guide learning plans and role alignment within the team.
Team Skill Matrix
The heatmap below shows each team member’s self-assessed proficiency (1–5) across selected analytics and data engineering skills.
We filter job postings to focus exclusively on data-centric roles within data-heavy industries (NAICS sectors: Information, Finance & Insurance, and Professional Services).
These sectors employ a large proportion of data & analytics professionals, making them strong benchmarks for industry expectations.
We then identify postings related to analytics roles using keyword matching on job titles.
Finally, we extract software skills listed in job descriptions and compute how frequently each skill appears across the filtered postings.
Higher skill frequency = greater demand = higher importance for employability.
Lightcast provides skill data as comma-separated text fields.
We parse and standardize these strings, explode them into individual skills, and aggregate counts across all postings. This produces a clean, frequency-based ranking of the most in-demand technologies in data-oriented careers.
Code
df_filtered = df_filtered.copy()df_filtered["software_skill"] = ( df_filtered["SOFTWARE_SKILLS_NAME"] .fillna("") .str.split(",") .apply(lambda lst: [s.strip() for s in lst if s.strip() !=""]))df_sw_exploded = ( df_filtered .explode("software_skill") .dropna(subset=["software_skill"]))industry_skill_counts = ( df_sw_exploded["software_skill"] .value_counts() .to_frame(name="count"))industry_skill_counts.head()
count
software_skill
SQL (Programming Language)
7684
Python (Programming Language)
4620
Dashboard
4202
Tableau (Business Intelligence Software)
4085
Power BI
3695
Gap Calculation
To quantify alignment between our team and the market, we compare:
Team Score - average proficiency ratings (1–5 scale) provided internally
Industry Score - demand-derived skill importance (normalized from posting frequency)
The Gap metric is defined as: \(Gap=Industry Score - Team Score\)
A positive gap means the team exceeds market expectations.
A negative gap highlights opportunities for additional training or hiring.
How can the team collaborate to bridge skill gaps?
While our team demonstrates strong proficiency across most software skills, we still need more consistency to meet industry expectations. To address this, we developed a collaborative improvement plan where members with higher expertise will guide others through structured peer learning. The plan focuses on small but consistent practice activities, especially in the skills with the highest industry demand: Python, SQL, Tableau/Power BI, and Microsoft Excel. For example, we will practice SQL by solving LeetCode problems and joining SQL contests, and strengthen Power BI and Tableau skills by creating hands-on visualizations. We will also remain active on GitHub to document progress and maintain a strong professional portfolio.