Pewlett-Hackard-Analysis

Overview of the analysis

Pewlett Hackard is anticipating a massive changeover in their personnel due to an expected wave of retirees. To help prepare for this "silver tsunami," I used SQL to determine the number of employees that may be retiring per job title, and to help identify candidates to serve as mentors for their replacements.

Results

  • There are over 70,000 employees who are about to retire

image

  • Senior Engineers & Senior Staff are the job titles that are going to be most impacted by the "silver tsunami," each with over 2.5 times as many expected retirements as the next nearest job title

image

  • The 50,842 employees with a senior job title retiring soon account for over 70% of the total expected retirees.

image

  • There are only about 1,500 employees that fit the criteria for the mentorship program.

image

Summary

  • How many roles will need to be filled as the "silver tsunami" begins to make an impact?

72,458 employees are expected to retire in the "silver tsunami." An additional query of the employees table helps put that number into context:

image

The company currently employs 300,024 people, so nearly 1/4 of its staff are expected to exit.

  • Are there enough qualified, retirement-ready employees in the departments to mentor the next generation of Pewlett Hackard employees?

There are not nearly enough qualified, retirement-ready employees ready to mentor. Without loosening the requirements to become a mentor, each mentor would have to oversee approximately 46 mentees (assuming every retirement is replaced on a 1:1 ratio).

From this analysis, we know how many employees are expected to retire, their current job titles, and the number of possible mentors ready to help train their replacements. For more context, an additional query can be run to discover which departments might be most impacted by the "silver tsunami". First to establish a new table with the employee numbers, department numbers, and department names of all the expected retirees:

image

And then, I selected a count on the employee numbers grouped by department name, and ordered in descending order:

image

From this table, we know that the Development and Production departments will lose the most employees to the "silver tsunami," and by wide margins. In turn, the company may want to prioritize the hiring and/or mentoring for these departments.