Analyse the effectiveness of training programs and recommend improvements to enhance employee skills and performance.
Introduction: Assessing training program effectiveness is vital in the dynamic business landscape. This analysis delves into the impact of training initiatives on employee skills and performance. It evaluates participation rates and post-training outcomes to identify successful strategies and areas needing improvement. By providing actionable recommendations, it aims to enhance workforce competencies, keeping the organization agile in a competitive environment.
- The available data with table name hr_data contains discrepancies which has to be taken care.
- Gender & Position column has incompatible data:
Here we can observe Data Scientist & Marketing Analyst data has Duplicates.
- Also the column Last_Promotion_Date is in varchar Datatype.
- All these columns has to be changed. Hence, data cleaning process was carried out using below queries,
I. Gender column was Replaced ‘Male’ to ‘M’ and ‘Female’ to ‘F’.
II. Position column was replaced ‘DataScientist’ to ‘Data Scientist’ and ‘Marketinganalyst’ to ‘Marketing Analyst’.
III. Age Group Column was created by filtering Age <= 30 and Age>30.
IV. SalaryBucket column was created by filtering the salary column.
V. LastPromotionDate Column was unable to modify hence followed different approach.
a. First datatype of the column was changed from text to varchar(50)
b. Then the data inside the column was converted as below.
c. Then the data type of the column was changed from varchar to date.
Now the data is cleaned and feasible for analysing the data.
- Analysing age group of employees who has left the organisation.
Comparing this with Employees who has not left the organisation
There is no clear correlation between an employee's age and their performance rating. High-performing employees can be found across all age groups. This suggests that age is not a significant factor in determining job performance within the organization.
- Now Gender of the employees with their performance rating is compared.
Comparing this with Employees who has not left the organisation
Gender also doesn't appear to have a substantial impact on performance rating. Both male and female employees receive similar performance ratings. The organization seems to provide equal opportunities and assesses employee performance objectively.
- Comparing Year of Service with performance rating
Comparing this with Employees who has not left the organisation
The dataset shows that more experienced employees (with higher years of service) don't necessarily receive higher performance ratings. Performance ratings appear to be distributed evenly among employees with different levels of experience.
- Comparing Salary Bucket with performance rating
Comparing this with Employees who has not left the organisation
Most employees with a performance rating of 4 or 5 fall into the 60K - 70K salary range. While higher salaries can be found in the 70K - 80K range, this doesn't seem to be a guarantee of higher performance ratings. The distribution of performance ratings is fairly consistent across different salary brackets.
- Comparing Training Hours with performance rating
Comparing this with Employees who has not left the organisation
There is a noticeable positive correlation between the number of training hours and performance rating. Employees who receive more training tend to have higher performance ratings. This suggests that investing in employee training can lead to improved performance.
- Comparing Promotions with performance rating
Comparing this with Employees who has not left the organisation
The presence of a promotion seems to have a positive impact on performance ratings. Employees who have been promoted have higher average performance ratings compared to those who haven't been promoted.
- Comparing Satisfaction Score with performance rating
Comparing this with Employees who has not left the organisation
A positive relationship is observed between employee satisfaction scores and performance ratings. Higher satisfaction scores are associated with higher performance ratings. It is essential for the organization to focus on employee satisfaction to improve overall performance.
- The organization should continue to focus on providing training and development opportunities to employees. This investment in skill enhancement is positively associated with improved performance.
- The organization should maintain its promotion strategy, as it appears to be linked to higher performance. However, it's important to ensure promotions are fair and based on merit.
- To further enhance employee performance, the organization should consider conducting regular employee satisfaction surveys to identify areas for improvement and act on employee feedback.
- Since age and gender do not seem to be correlated with performance ratings, the organization should maintain its commitment to diversity and equal opportunities in the workplace.
- To attract and retain high-performing employees, it may be beneficial to review compensation and benefits packages, especially in the 60K - 70K salary bracket.
This analysis provides a foundation for making data-driven decisions to enhance employee skills and performance within the organization. It's essential to continuously collect and analyse data to adapt and improve HR strategies over time.
















