Skip to content

This project explores the data science job market, revealing correlations between skills, job roles, regions, and salaries. Leveraging Excel’s Power Query, PivotTables, DAX, and charts, it highlights high-paying skills like Python and SQL. These insights aim to guide data professionals toward in-demand skills for competitive career growth.

Notifications You must be signed in to change notification settings

RiteshYadav11/Data-Science-Skills-Pay-Trends

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Project 2 : DATA SCIENCE SKILLS & PAY TRENDS

Introduction

As a former job seeker, I’ve always been surprised by the lack of data exploring the most optimal jobs and skills in the data science market. I set out to understand what skills top employers request and how to land more pay.

Questions to Analyze

To understand the data science job market, I asked the following:

  1. Do more skills get you better pay?
  2. What’s the salary for data jobs in different regions?
  3. What are the top skills of data professionals?
  4. What’s the pay for the top 10 skills?

Excel Skills Used

The following Excel skills were utilized for analysis:

  • 📊 Pivot Tables
  • 📈 Pivot Charts
  • 🧮 DAX (Data Analysis Expressions)
  • 🔍 Power Query
  • 💪 Power Pivot

Data Jobs Dataset

The dataset used for this project contains real-world data science job information from 2023.

It includes detailed information on:

  • 👨‍💼 Job titles
  • 💰 Salaries
  • 📍 Locations
  • 🛠️ Skills

1️⃣ Do more skills get you better pay?

🔍 Skill: Power Query (ETL)

📥 Extract

  • I first used Power Query to extract the original data (Project_Analysis.xlsx) and create two queries:
    • 🗃️ First one with all the data jobs information.
    • 🔧 The second listing the skills for each job ID.

🔄 Transform

  • Then, I transformed each query by changing column types, removing unnecessary columns, cleaning text to eliminate specific words, and trimming excess whitespace.
    • 📊 data_jobs_all

      Project_Analysis_Screenshot1.png

    • 🛠️ data_job_skills

      Project_Analysis_Screenshot2.png Project_Analysis_Screenshot2(1).png

🔗 Load

  • Finally, I loaded both transformed queries into the workbook, setting the foundation for my subsequent analysis.
    • 📊 data_jobs_all

      Project_Analysis_Screenshot3.png

    • 🛠️ data_job_skills

      Project_Analysis_Screenshot4.png

📊 Analysis

💡 Insights

  • 📈 There is a positive correlation between the number of skills requested in job postings and the median salary, particularly in roles like Senior Data Engineer and Data Scientist.

  • 💼 Roles that require fewer skills, like Business Analyst, tend to offer lower salaries, suggesting that more specialized skill sets command higher market value.

    Project_Analysis_Chart1.png

🤔 So What

  • This trend emphasizes the value of acquiring multiple relevant skills, particularly for individuals aiming for higher-paying roles.

2️⃣ What’s the salary for data jobs in different regions?

🧮 Skills: PivotTables & DAX

📈Pivot Table

  • 🔢 I created a PivotTable using the Data Model I created with Power Pivot.
  • 📊 I moved the job_title_short to the rows area and salary_year_avg into the values area.
  • 🧮 Then I added new measure to calculate the median salary for United States jobs.
    =CALCULATE(
        MEDIAN(data_jobs_all[salary_year_avg]),
        data_jobs_all[job_country] = "United States")
    

🧮 DAX

  • To calculate the median year salary I used DAX.

    Median Salary := MEDIAN(data_jobs_all[salary_year_avg])
    

📊 Analysis

💡 Insights

  • 💼 Job roles like Senior Data Engineer and Data Scientist command higher median salaries both in the US and internationally, showcasing the global demand for high-level data expertise.

  • 💰 The salary disparity between US and Non-US roles is particularly notable in high-tech jobs, which might be influenced by the concentration of tech industries in the US.

    Project_Analysis_Chart2.png

🤔 So What

  • These salary insights are important for planning and salary negotiations, helping professionals and companies align their offers with market standards while considering geographical variations.

3️⃣ What are the top skills of data professionals?

🔧 Skill: Power Pivot

💪 Power Pivot

  • 🔗 I created a data model by integrating the data_jobs_all and data_jobs_skills tables into one model.
  • 🧹 Since I had already cleaned the data using Power Query; Power Pivot created a relationship between these two tables.

🔗 Data Model

  • I created a relationship between my two tables using the job_id column.

    Project_Analysis_Screenshot5.png

📃 Power Pivot Menu

  • The Power Pivot menu was used to refine my data model and makes it easy to create measures.

    Project_Analysis_Screenshot6.png

📊Analysis

💡Insights

  • 💻 SQL and Python dominate as top skills in data-related jobs, reflecting their foundational role in data processing and analysis.

  • ☁️ Emerging technologies like AWS and Azure also show significant presence, underlining the industry's shift towards cloud services and big data technologies.

    Project_Analysis_Chart3.png

🤔So What

  • Understanding prevalent skills in the industry not only helps professionals stay competitive but also guides training and educational programs to focus on the most impactful technologies.

4️⃣ What’s the pay of the top 10 skills?

📊 Skill: Advanced Charts (Pivot Chart)

📈 PivotChart

  • I created a combo PivotChart to plot median salary and skill likelihood (%) from my PivotTable.
    • 🪙 Primary Axis: Median Salary (as a Clustered Column)
    • 👍 Secondary Axis: Skill Likelihood (as a Line with Markers)
  • To customize the chart, I added a title axis title, removed the lines (skill likelihood), and changed the markers to diamonds.

📊 Analysis

💡Insights

  • 💰 Higher median salaries are associated with skills like Python, Oracle, and SQL, suggesting their critical role in high-paying tech jobs.

  • 📉 Skills like PowerPoint and Word have the lowest median salaries and likelihood, indicating less specialization and demand in high-salary sectors.

    Project_Analysis_Chart4.png

🤔So What

  • This chart highlights the importance of investing time in learning high-value skills like Python and SQL, which are evidently tied to higher paying roles, especially for those looking to maximize their salary in the tech industry.

Conclusion

As a data enthusiast and former job seeker, I embarked on this Excel-based project to uncover valuable insights about the data science job market. Using a dataset from real-world job postings, I analyzed job titles, salaries, locations, and essential skills. By leveraging Excel features like Power Query, PivotTables, DAX, and charts, I discovered key correlations between multiple skills and higher salaries, particularly in Python, SQL, and cloud technologies.

I hope this project serves as a practical guide for data professionals and provides an overview of the skills needed for higher-paying roles.

About

This project explores the data science job market, revealing correlations between skills, job roles, regions, and salaries. Leveraging Excel’s Power Query, PivotTables, DAX, and charts, it highlights high-paying skills like Python and SQL. These insights aim to guide data professionals toward in-demand skills for competitive career growth.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published