Employee Salaries Analysis
Salary information for employees across various departments
@kaggle.sahirmaharajj_employee_salaries_analysis
Salary information for employees across various departments
@kaggle.sahirmaharajj_employee_salaries_analysis
Annual salary information including gross pay and overtime pay for all active, permanent employees of Montgomery County, MD paid in calendar year 2023. This dataset is a prime candidate for conducting analyses on salary disparities, the relationship between department/division and salary, and the distribution of salaries across gender and grade levels.
Statistical models can be applied to predict base salaries based on factors such as department, grade, and length of service. Machine learning techniques could also be employed to identify patterns and anomalies in the salary data, such as outliers or instances of significant inequity.
Some analysis to be performed with this dataset can include:
CREATE TABLE employee_salaries (
"department" VARCHAR,
"department_name" VARCHAR,
"division" VARCHAR,
"gender" VARCHAR,
"base_salary" DOUBLE,
"overtime_pay" DOUBLE,
"longevity_pay" DOUBLE,
"grade" VARCHAR
);Anyone who has the link will be able to view this.