员工离职困扰?来看AI如何解决,基于人力资源分析的 ML 模型构建全方案
携手创作,共同成长!这是我参与「掘金日新计划 · 8 月更文挑战」的第26天,点击查看活动详情
- 💡 作者:韩信子@ShowMeAI
- 📘 数据分析实战系列:http://www.showmeai.tech/tutorials/40
- 📘 机器学习实战系列:http://www.showmeai.tech/tutorials/41
- 📘 本文地址:http://www.showmeai.tech/article-detail/308
- 📢 声明:版权所有,转载请联系平台与作者并注明出处
- 📢 收藏ShowMeAI查看更多精彩内容
人力资源是组织的一个部门,负责处理员工的招聘、培训、管理和福利。一个组织每年都会雇佣几名员工,并投入大量时间、金钱和资源来提高员工的绩效和效率。每家公司都希望能够吸引和留住优秀的员工,失去一名员工并再次雇佣一名新员工的成本是非常高的,HR部门需要知道雇用和留住重要和优秀员工的核心因素是什么,那那么可以做得更好。
在本项目中,ShowMeAI 带大家通过数据科学和AI的方法,分析挖掘人力资源流失问题,并基于机器学习构建解决问题的方法,并且,我们通过对AI模型的反向解释,可以深入理解导致人员流失的主要因素,HR部门也可以根据分析做出正确的决定。
本篇涉及到的数据集大家可以通过 ShowMeAI 的百度网盘地址获取。
🏆 实战数据集下载(百度网盘):公众号『ShowMeAI研究中心』回复『实战』,或者点击 这里 获取本文 [17]人力资源流失场景机器学习建模与调优 『HR-Employee-Attrition 数据集』
⭐ ShowMeAI官方GitHub:http://github.com/ShowMeAI-Hub
💡 探索性数据分析
和 ShowMeAI 之前介绍过的所有AI项目一样,我们需要先对场景数据做一个深度理解,这就是我们提到的EDA(Exploratory Data Analysis,探索性数据分析)过程。
EDA部分涉及的工具库,大家可以参考ShowMeAI制作的工具库速查表和教程进行学习和快速使用。 - 📘数据科学工具库速查表 | Pandas 速查表 - 📘数据科学工具库速查表 | Seaborn 速查表 - 📘图解数据分析:从入门到精通系列教程
📌 数据&字段说明
我们本次使用到的数据集字段基本说明如下:
| 列名 | 含义 | | :------------------------ | :----------------------------------- | | Age | 年龄 | | Attrition | 离职 | | BusinessTravel | 出差:0-不出差、1-偶尔出差、2-经常出差 | | Department | 部门:1-人力资源、2-科研、3-销售 | | DistanceFromHome | 离家距离 | | Education | 教育程度:1-大学一下、2-大学、3-学士、4-硕士、5-博士 | | EducationField | 教育领域 | | EnvironmentSatisfaction | 环境满意度 | | Gender | 性别:1-Mae男、0- Female女 | | Joblnvolvement | 工作投入 | | JobLevel | 职位等级 | | JobRole | 工作岗位 | | JobSatisfaction | 工作满意度 | | Maritalstatus | 婚姻状况:0- Divorced离婚、1- Single未婚、2-已婚 | | Monthlylncome | 月收入 | | NumCompaniesWorked | 服务过几家公司 | | OverTime | 加班 | | RelationshipSatisfaction | 关系满意度 | | StockOptionLevel | 股权等级 | | TotalworkingYears | 总工作年限 | | TrainingTimesLastYear | 上一年培训次数 | | WorkLifeBalance | 工作生活平衡 | | YearsAtCompany | 工作时长 | | YearsInCurrentRole | 当前岗位在职时长 | | YearsSinceLastPromotion | 上次升职时间 | | YearsWithCurrManager | 和现任经理时长 |
📌 数据速览
下面我们先导入所需工具库、加载数据集并查看数据基本信息:
```python import pandas as pd import numpy as np import matplotlib as mpl import matplotlib.pyplot as plt import seaborn as sns sns.set_style("darkgrid")
import warnings warnings.filterwarnings("ignore") pd.set_option('display.max_columns',100) print("import complete") ```
```python
读取数据
data = pd.read_csv("HR-Employee-Attrition.csv")
data.head()
```
查看前 5 条数据记录后,我们了解了一些基本信息:
① 数据包含『数值型』和『类别型』两种类型的特征。 ② 有不少离散的数值特征。
📌 查看数据基本信息
接下来我们借助工具库进一步探索数据。
```python
字段、类型、缺失情况
data.info() ```
我们使用命令 data.info``()
来获取数据的信息,包括总行数(样本数)和总列数(字段数)、变量的数据类型、数据集中非缺失的数量以及内存使用情况。
从数据集的信息可以看出,一共有 35 个特征,Attrition 是目标字段,26 个变量是整数类型变量,9 个是对象类型变量。
📌 缺失值检测&处理
我们先来做一下缺失值检测与处理,缺失值的存在可能会降低模型效果,也可能导致模型出现偏差。
```python
查看缺失值情况
data.isnull().sum() ```
从结果可以看出,数据集中没有缺失值。
📌 特征编码
因为目标特征“Attrition”是一个类别型变量,为了分析方便以及能够顺利建模,我们对它进行类别编码(映射为整数值)。
```python
since Attrition is a categotical in nature so will be mapping it with integrs variables for further analysis
data.Attrition = data.Attrition.map({"Yes":1,"No":0}) ```
📌 数据统计概要
接下来,我们借助于pandas的describe函数检查数值特征的统计摘要:
```python
checking statistical summary
data.describe().T ```
注意这里的“.T”是获取数据帧的转置,以便更好地分析。
从统计摘要中,我们得到数据的统计信息,包括数据的中心趋势——平均值、中位数、众数和散布标准差和百分位数,最小值和最大值等。
📌 数值型特征分析
我们进一步对数值型变量进行分析
```python
选出数值型特征
numerical_feat = data.select_dtypes(include=['int64','float64']) numerical_feat ```
python
print(numerical_feat.columns)
print("No. of numerical variables :",len(numerical_feat.columns))
print("Number of unique values \n",numerical_feat.nunique())
我们有以下观察结论:
① 共有27个数值型特征变量 ② 月收入、日费率、员工人数、月费率等为连续数值 ③ 其余变量为离散数值(即有固定量的候选取值)
我们借助于 seaborn 工具包中的分布图方法 sns.distplot()
来绘制数值分布图
```python
数据分析&分布绘制
plt.figure(figsize=(25,30)) plot = 1 for var in numerical_feat: plt.subplot(9,3,plot) sns.distplot(data[var],color='skyblue') plot+=1 plt.show() ```
通过以上分析,我们获得以下一些基本观察和结论:
- 大多数员工都是 30 多岁或 40 多岁
- 大多数员工具有 3 级教育
- 大多数员工将环境满意度评为 3 和 4
- 大多数员工的工作参与度为 3 级
- 大多数员工来自工作级别 1 和 2
- 大多数员工将工作满意度评为 3 和 4
- 大多数员工只在 1 个公司工作过
- 大多数员工的绩效等级为 3
- 大多数员工要么没有股票期权,要么没有一级股票期权
- 大多数员工有 5-10 年的工作经验
- 大多数员工的工作与生活平衡评分为 3
接下来我们对目标变量做点分析:
```python
目标变量分布
sns.countplot('Attrition',data=data) plt.title("Distribution of Target Variable") plt.show() print(data.Attrition.value_counts()) ```
我们可以看到数据集中存在类别不平衡问题(流失的用户占比少)。类别不均衡情况下,我们要选择更有效的评估指标(如auc可能比accuracy更有效),同时在建模过程中做一些优化处理。
我们分别对各个字段和目标字段进行联合关联分析。
```python
Age 与 attrition
age=pd.crosstab(data.Age,data.Attrition) age.div(age.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(14,7),cmap='spring') plt.title("Age vs Attrition",fontsize=20) plt.show() ```
```python
Distance from home 与 attrition
dist=pd.crosstab(data.DistanceFromHome,data.Attrition) dist.div(dist.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7)) plt.title("Distance From Home vs Attrition",fontsize=20) plt.show() ```
```python
Education 与 Attrition
edu=pd.crosstab(data.Education,data.Attrition) edu.div(edu.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7)) plt.title("Education vs Attrition",fontsize=20) plt.show() ```
```python
Environment Satisfaction 与 Attrition
esat=pd.crosstab(data.EnvironmentSatisfaction,data.Attrition) esat.div(esat.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='BrBG') plt.title("Environment Satisfaction vs Attrition",fontsize=20) plt.show() ```
```python
Job Involvement 与 Attrition
job_inv=pd.crosstab(data.JobInvolvement,data.Attrition) job_inv.div(job_inv.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Spectral') plt.title("Job Involvement vs Attrition",fontsize=20) plt.show() ```
```python
Job Level 与 Attrition
job_lvl=pd.crosstab(data.JobLevel,data.Attrition) job_lvl.div(job_lvl.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='prism_r') plt.title("Job Level vs Attrition",fontsize=20) plt.show() ```
```python
Job Satisfaction 与 Attrition
job_sat=pd.crosstab(data.JobSatisfaction,data.Attrition) job_sat.div(job_sat.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='inferno') plt.title("Job Satisfaction vs Attrition",fontsize=20) plt.show() ```
```python
Number of Companies Worked 与 Attrition
num_org=pd.crosstab(data.NumCompaniesWorked,data.Attrition) num_org.div(num_org.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='cividis_r') plt.title("Number of Companies Worked vs Attrition",fontsize=20) plt.show() ```
```python
Percent Salary Hike 与 Attrition
sal_hike_percent=pd.crosstab(data.PercentSalaryHike,data.Attrition) sal_hike_percent.div(sal_hike_percent.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='RdYlBu') plt.title("Percent Salary Hike vs Attrition",fontsize=20) plt.show() ```
```python
Performance Rating 与 Attrition
performance=pd.crosstab(data.PerformanceRating,data.Attrition) performance.div(performance.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='viridis_r') plt.title("Performance Rating vs Attrition",fontsize=20) plt.show() ```
```python
Relationship Satisfaction 与 Attrition
rel_sat=pd.crosstab(data.RelationshipSatisfaction,data.Attrition) rel_sat.div(rel_sat.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='brg_r') plt.title("Relationship Satisfaction vs Attrition",fontsize=20) plt.show() ```
```python
Stock Option Level 与 Attrition
stock_opt=pd.crosstab(data.StockOptionLevel,data.Attrition) stock_opt.div(stock_opt.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Accent') plt.title("Stock Option Level vs Attrition",fontsize=20) plt.show() ```
```python
Training Times Last Year 与 Attrition
tr_time=pd.crosstab(data.TrainingTimesLastYear,data.Attrition) tr_time.div(tr_time.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='coolwarm') plt.title("Training Times Last Year vs Attrition",fontsize=20) plt.show() ```
```python
Work Life Balance 与 Attrition
work=pd.crosstab(data.WorkLifeBalance,data.Attrition) work.div(work.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='gnuplot') plt.title("Work Life Balance vs Attrition",fontsize=20) plt.show() ```
```python
Years With Curr Manager 与 Attrition
curr_mang=pd.crosstab(data.YearsWithCurrManager,data.Attrition) curr_mang.div(curr_mang.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='OrRd_r') plt.title("Years With Curr Manager vs Attrition",fontsize=20) plt.show() ```
```python
Years Since Last Promotion 与 Attrition
prom=pd.crosstab(data.YearsSinceLastPromotion,data.Attrition) prom.div(prom.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='PiYG_r') plt.title("Years Since Last Promotion vs Attrition",fontsize=20) plt.show() ```
```python
Years In Current Role 与 Attrition
role=pd.crosstab(data.YearsInCurrentRole,data.Attrition) role.div(role.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='terrain') plt.title("Years In Current Role vs Attrition",fontsize=20) plt.show() ```
这些堆积条形图显示了员工流失情况与各个字段取值的关系,从上图我们可以得出以下基本结论:
- 30 岁以下或特别是年轻的员工比年长员工的流失率更高。
- 离家较远的员工的流失率较高,即如果员工住在附近,他或她离开公司的机会较小。
- 3 级和1 级教育的流失率较高,5 级教育的流失率最低,高等教育水平的候选人稳定性更高。
- 环境满意度低会导致较高的人员流失率,满意度1 级的人员流失率较高,4 级人员的流失率最低。
- 工作参与级别 1 的员工流失率较高,级别 4 的员工流失率最低,这意味着工作参与度更高的员工离职机会较低。
- 级别 1 和级别 3 的员工流失率较高,级别 5 的员工流失率最低,即职位级别较高的员工流失的可能性较小。
- 工作满意度级别 1 的员工流失率较高,级别 4 的员工流失率最低,工作满意度较高的员工流失的可能性较小。
- 在超过四家公司工作过的员工流失率较高,这个字段本身在一定程度上体现了员工的稳定性。
- 1 级关系满意度较高,4 级最少,这意味着与雇主关系好的员工流失可能性较低。
- 股票期权级别为 0 的员工流失率较高,而级别 1 和 2 的员工流失率较低,这意味着如果员工持有股票,会更倾向于留下
- 工作与生活平衡水平为 1 的员工流失率高,或者我们可以说工作与生活平衡低的员工更可能流失。
- 自过去 8 年以来未晋升的员工有大量流失。
- 随着与经理相处的时间变长,员工流失率会下降。
📌 类别型特征分析
现在我们对类别型特征进行分析,在这里我们使用饼图和堆积条形图来分析它们的分布以及它们和目标变量的相关性。
```python
分析Buisness Travel
colors=['red','green','blue'] size = data.BusinessTravel.value_counts().values explode_list=[0,0.05,0.1] plt.figure(figsize=(15,10)) plt.pie(size,labels=None,explode=explode_list,colors=colors,autopct="%1.1f%%",pctdistance=1.15) plt.title("Business Travel",fontsize=15) plt.legend(labels=['Travel_Rarely','Travel_Frequently','Non-Travel'],loc='upper left') plt.show() ```
```python
分析Department
colors=['orchid','gold','olive'] size = data.Department.value_counts().values explode_list=[0,0.05,0.06] plt.figure(figsize=(15,10)) plt.pie(size,labels=None,explode=explode_list,colors=colors,autopct="%1.1f%%",pctdistance=1.1) plt.title("Department",fontsize=15) plt.legend(labels=['Sales','Research & Development','Human Resources'],loc='upper left') plt.show() ```
```python
分析Education Field
colors=["cyan","orange","hotpink","green","navy","grey"] size = data.EducationField.value_counts().values explode_list=[0,0.05,0.05,0.08,0.08,0.1] plt.figure(figsize=(15,10)) plt.pie(size,labels=None,explode=explode_list,colors=colors,autopct="%1.1f%%",pctdistance=1.1) plt.title("Education Field",fontsize=15) plt.legend(labels=['Life Sciences','Other','Medical','Marketing','Technical Degree','Human Resources'],loc='upper left') plt.show() ```
```python
分析婚姻状况
colors=["red","orange","magenta","green","navy","grey","cyan","blue","black"] size = data.JobRole.value_counts().values explode_list=[0,0.05,0.05,0.05,0.08,0.08,0.08,0.1,0.1] plt.figure(figsize=(15,10)) plt.pie(size,labels=None,explode=explode_list,colors=colors,autopct="%1.1f%%",pctdistance=1.1) plt.title("Job Role",fontsize=15) plt.legend(labels=['Sales Executive','Research Scientist','Laboratory Technician','Manufacturing Director','Healthcare Representative','Manager','Sales Representative','Research Director','Human Resources'],loc='upper left') plt.show() ```
```python
分析gender性别
plt.figure(figsize=(10,9)) plt.title('Gender distribution',fontsize=15) sns.countplot('Gender',data=data,palette='magma') ```
从上面的图中,我们获得了一些信息:
- 大部分员工很少出差。
- 销售部门是公司的主体,研发占公司的30%左右,人力资源占比最小。
- 拥有生命科学教育背景的员工数量较多,而人力资源教育背景的员工数量较少。
- 大部分员工来自销售职位,最少来自人力资源部门。
- 大部分员工未婚。
- 公司中男性的数量多于女性。
下面做关联分析:
```python
Business Travel 与 Attrition
trav = pd.crosstab(data.BusinessTravel,data.Attrition) trav.div(trav.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Set1') plt.title("Business Travel vs Attrition",fontsize=20) plt.show() ```
```python
Department 与 Attrition
dept = pd.crosstab(data.Department,data.Attrition) dept.div(dept.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Set1') plt.title("Department vs Attrition",fontsize=20) plt.show() ```
```python
Education Field 与 Attrition
edu_f = pd.crosstab(data.EducationField,data.Attrition) edu_f.div(edu_f.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Set1') plt.title("Education Field vs Attrition",fontsize=20) plt.show() ```
```python
Job Role 与 Attrition
jobrole = pd.crosstab(data.JobRole,data.Attrition) jobrole.div(jobrole.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Set1') plt.title("Job Role vs Attrition",fontsize=20) plt.show() ```
```python
Marital Status 与 Attrition
mary = pd.crosstab(data.MaritalStatus,data.Attrition) mary.div(mary.sum(1),axis=0).plot(kind='bar',stacked=True,figsize=(12,7),cmap='Set1') plt.title("Marital Status vs Attrition",fontsize=20) plt.show() ```
```python
gender 与 Attrition
plt.figure(figsize=(10,9)) plt.title('Gender distribution',fontsize=15) sns.countplot('Gender',data=data,palette='magma') ```
上图反应了一些信息:
- 经常出差员工的离职率较高,非出差员工离职率较低,也就是说,经常出差的员工更有可能流失。
- 销售和人力资源的流失率较高,而研发的流失率较低。
- 人力资源教育背景的流失率较高,而医学和其他教育背景的流失率最低。,医学和其他教育背景的员工离职的可能性较小。
- 销售代表、人力资源和实验室技术人员的流失率最高。
- 未婚员工离职率较高,离婚员工离职率最低。
- 男性员工的流失率更高。
📌 相关性分析
我们计算特征之间的相关系数并绘制热力图:
```python
计算相关度矩阵并绘制热力图
plt.figure(figsize=(20,15)) sns.heatmap(data.corr(method='spearman'),annot=True,cmap='Accent') plt.title('Correlation of features',fontsize=20) plt.show() ```
```python
相关度排序
plt.figure(figsize=(15,9)) correlation = data . corr(method='spearman') correlation.Attrition.sort_values(ascending=False).drop('Attrition').plot.bar(color='r') plt.title('Correlation of independent features with target feature',fontsize=20) plt.show() ```
📌 异常值检测与处理
下面我们检测一下数据集中的异常值,在这里,我们使用箱线图来可视化分布并检测异常值。
```python
绘制箱线图
plot=1 plt.figure(figsize=(15,30)) for i in numerical_feat.columns: plt.subplot(9,3,plot) sns.boxplot(data[i],color='navy') plt.xlabel(i) plot+=1 plt.show() ```
箱线图显示数据集中有不少异常值,不过这里的异常值主要是因为离散变量(可能是取值较少的候选),我们将保留它们(不然会损失掉这些样本信息),不过我们注意到月收入的异常值比较奇怪,这可能是由于数据收集错误造成的,可以清洗一下。
💡 特征工程
关于机器学习特征工程,大家可以参考 ShowMeAI 整理的特征工程最全解读教程。
📌 类别均衡处理
下面我们来完成特征工程的部分,从原始数据中抽取强表征的信息,以便模型能更直接高效地挖掘和建模。
我们在EDA过程中发现 MonthlyIncome、JobLevel 和 YearsAtCompany 以及 YearsInCurrentRole 高度相关,可能会带来多重共线性问题,我们会做一些筛选,同时我们会删除一些与 EmployeeCount、StandardHours 等变量不相关的特征,并剔除一些对预测不重要的特征。
```python dataset = data.copy()
删除与目标相关性低的Employee count 和 standard hours特征
dataset.drop(['EmployeeCount','StandardHours'],inplace=True,axis=1) dataset.head(2) ```
下面我们对类别型特征进行编码,包括数字映射与独热向量编码。
```python
按照出差的频度进行编码
dataset.BusinessTravel = dataset.BusinessTravel.replace({ 'Non-Travel':0,'Travel_Rarely':1,'Travel_Frequently':2 })
性别与overtime编码
dataset.Gender = dataset.Gender.replace({'Male':1,'Female':0}) dataset.OverTime = dataset.OverTime.replace({'Yes':1,'No':0})
独热向量编码
new_df = pd.get_dummies(data=dataset,columns=['Department','EducationField','JobRole', 'MaritalStatus']) new_df ```
处理与转换后的数据如下所示:
在前面的数据探索分析过程中,我们发现目标变量是类别不平衡的,因此可能会导致模型偏向多数类而带来偏差。我们在这里会应用过采样技术 SMOTE(合成少数类别的样本补充)来处理数据集中的类别不平衡问题。
我们把数据先切分为特征和标签,处理之前的标签类别比例如下:
```python
切分特征和标签
X = new_df.drop(['Attrition'],axis=1) Y = new_df.Attrition
标签01取值比例
sns.countplot(data=new_df,x=Y,palette='Set1') plt.show() print(Y.value_counts()) ```
应用过采样技术 SMOTE:
```python
SMOTE处理类别不均衡
from imblearn.over_sampling import SMOTE sm = SMOTE(sampling_strategy='minority') x,y = sm.fit_resample(X,Y) print(x.shape," \t ",y.shape)
(2466, 45) (2466,)
```
过采样后
```python
过采样之后的比例
sns.countplot(data=new_df,x=y,palette='Set1') plt.show() print(y.value_counts()) ```
📌 特征幅度缩放
现在数据集已经类别均衡了,我们做一点特征工程处理,比如有些模型对于特征值的幅度是敏感的,我们做一点幅度缩放,这里我们调用sklearn.preprocessing 类中的 MinMaxScaler 方法。
```python
特征幅度缩放
from sklearn.preprocessing import MinMaxScaler scaler = MinMaxScaler() x_scaled = scaler.fit_transform(x) x_scaled = pd.DataFrame(x_scaled, columns=x.columns) x_scaled ```
处理后我们的数据集看起来像这样
所有取值都已调整到 0 -1 的幅度范围内。
💡 分析特征重要性
通常在特征工程之后,我们会得到非常多的特征,太多特征会带来模型训练性能上的问题,不相关的差特征甚至会拉低模型的效果。
我们很多时候会进行特征重要度分析的工作,筛选和保留有效特征,而对其他特征进行剔除。我们先将数据集拆分为训练集和测试集,再基于互信息判定特征重要度。
```python
训练集测试集切分
from sklearn.model_selection import train_test_split
xtrain,xtest,ytrain,ytest = train_test_split(x_scaled,y,test_size=0.3,random_state=1) ```
我们使用 sklearn.feature_selection 类中的mutual_info_classif 方法来获得特征重要度。Mutual _info_classif的工作原理是类似信息增益。
```python from sklearn.feature_selection import mutual_info_classif
mutual_info = mutual_info_classif(xtrain,ytrain) mutual_info ```
下面我们绘制一下特征重要性
```python mutual_info = pd.Series(mutual_info) mutual_info.index = xtrain.columns mutual_info.sort_values(ascending=False)
plt.title("Feature Importance",fontsize=20) mutual_info.sort_values().plot(kind='barh',figsize=(12,9),color='r') plt.show() ```
当然,实际判定特征重要度的方式有很多种,甚至结果也会有一些不同,我们只是基于这个步骤,进行一定的特征筛选,把最不相关的特征剔除。
💡 模型构建和评估
关于建模与评估,大家可以参考 ShowMeAI 的机器学习系列教程与模型评估基础知识文章。 - 📘图解机器学习算法:从入门到精通系列教程 - 📘图解机器学习算法(1) | 机器学习基础知识 - 📘图解机器学习算法(2) | 模型评估方法与准则
好,我们前序工作就算完毕啦!下面要开始构建模型了。在建模之前,有一件非常重要的事情,是我们需要选择合适的评估指标对模型进行评估,这能给我们指明模型优化的方向,我们在这里,针对分类问题,尽量覆盖地选择了下面这些评估指标
- 准确度得分
- 混淆矩阵
- precision
- recall
- F1-score
- Auc-Roc
我们这里选用了8个模型构建baseline,并应用交叉验证以获得对模型无偏的评估结果。
```python
导入工具库
from sklearn.linear_model import LogisticRegression from sklearn.tree import DecisionTreeClassifier from sklearn.svm import SVC from sklearn.neighbors import KNeighborsClassifier from sklearn.naive_bayes import BernoulliNB from sklearn.ensemble import RandomForestClassifier from sklearn.ensemble import AdaBoostClassifier from sklearn.ensemble import GradientBoostingClassifier from sklearn.model_selection import cross_val_score,cross_validate from sklearn.metrics import classification_report,confusion_matrix,accuracy_score,plot_roc_curve,roc_curve,auc,roc_auc_score,precision_score,r
初始化baseline模型(使用默认参数)
LR = LogisticRegression() KNN = KNeighborsClassifier() SVC = SVC() DTC = DecisionTreeClassifier() BNB = BernoulliNB() RTF = RandomForestClassifier() ADB = AdaBoostClassifier() GB = GradientBoostingClassifier()
构建模型列表
models = [("Logistic Regression ",LR), ("K Nearest Neighbor classifier ",KNN), ("Support Vector classifier ",SVC), ("Decision Tree classifier ",DTC), ("Random forest classifier ",RTF), ("AdaBoost classifier",ADB), ("Gradient Boosting classifier ",GB), ("Naive Bayes classifier",BNB)] ```
接下来我们遍历这些模型进行训练和评估:
```python for name,model in models: model.fit(xtrain,ytrain) print(name," trained")
遍历评估
train_scores=[] test_scores=[] Model = [] for name,model in models: print("**",name,"****") train_acc = accuracy_score(ytrain,model.predict(xtrain)) test_acc = accuracy_score(ytest,model.predict(xtest)) print('Train score : ',train_acc) print('Test score : ',test_acc) train_scores.append(train_acc) test_scores.append(test_acc) Model.append(name)
不同的评估准则
precision_ =[] recall_ = [] f1score = [] rocauc = [] for name,model in models: print("**",name,"****") cm = confusion_matrix(ytest,model.predict(xtest)) print("\n",cm) fpr,tpr,thresholds=roc_curve(ytest,model.predict(xtest)) roc_auc= auc(fpr,tpr) print("\n","ROC_AUC_SCORE : ",roc_auc) rocauc.append(roc_auc) print(classification_report(ytest,model.predict(xtest))) precision = precision_score(ytest, model.predict(xtest)) print('Precision: ', precision) precision_.append(precision) recall = recall_score(ytest, model.predict(xtest)) print('Recall: ', recall) recall_.append(recall) f1 = f1_score(ytest, model.predict(xtest)) print('F1 score: ', f1) f1score.append(f1) plt.figure(figsize=(10,20)) plt.subplot(211) print(sns.heatmap(cm,annot=True,fmt='d',cmap='Accent')) plt.subplot(212) plt.plot([0,1],'k--') plt.plot(fpr,tpr) plt.xlabel('false positive rate') plt.ylabel('true positive rate') plt.show() ```
我们把所有的评估结果汇总,得到一个模型结果对比表单
```python
构建一个Dataframe存储所有模型的评估指标
evaluate = pd.DataFrame({}) evaluate['Model'] = Model evaluate['Train score'] = train_scores evaluate['Test score'] = test_scores evaluate['Precision'] = precision_ evaluate['Recall'] = recall_ evaluate['F1 score'] = f1score evaluate['Roc-Auc score'] = rocauc
evaluate ```
我们从上述baseline模型的汇总评估结果里看到:
- 逻辑回归和随机森林在所有模型中表现最好,具有最高的训练和测试准确度得分,并且它具有低方差的泛化性
- 从precision精度来看,逻辑回归0.976、随机森林0.982,也非常出色
- 从recall召回率来看,Adaboost、逻辑回归、KNN表现都不错
- F1-score会综合precision和recall计算,这个指标上,逻辑回归、随机森林、Adaboost表现都不错
- Roc-Auc评估的是排序效果,它对于类别不均衡的场景,评估非常准确,这个指标上,逻辑回归和随机森林、Adaboost都不错
我们要看一下最终的交叉验证得分情况
```python
查看交叉验证得分
for name,model in models: print("**",name,"****") cv_= cross_val_score(model,x_scaled,y,cv=5).mean() print(cv_) ```
从交叉验证结果上看,随机森林表现最优,我们把它选为最佳模型,并将进一步对它进行调优以获得更高的准确性。
💡 超参数调优
关于建模与评估,大家可以参考ShowMeAI的相关文章。
我们刚才建模过程,使用的都是模型的默认超参数,实际超参数的取值会影响模型的效果。我们有两种最常用的方法来进行超参数调优:
- 网格搜索:模型针对具有一定范围值的超参数网格进行评估,尝试参数值的每种组合,并实验以找到最佳超参数,计算成本很高。
- 随机搜索:这种方法评估模型的超参数值的随机组合以找到最佳参数,计算成本低于网格搜索。
下面我们演示使用随机搜索调参优化。
```python from sklearn.model_selection import RandomizedSearchCV
params = {'n_estimators': [int(x) for x in np.linspace(start = 100, stop = 1200, num = 12)], 'criterion':['gini','entropy'], 'max_features': ['auto', 'sqrt'], 'max_depth': [int(x) for x in np.linspace(5, 30, num = 6)], 'min_samples_split': [2, 5, 10, 15, 100], 'min_samples_leaf': [1, 2, 5, 10] } random_search=RandomizedSearchCV(RTF,param_distributions=params,n_jobs=-1,cv=5,verbose=5) random_search.fit(xtrain,ytrain) ```
拟合随机搜索后,我们取出最佳参数和最佳估计器。
python
random_search.best_params_
python
random_search.best_estimator_
我们对最佳估计器进行评估
```python
最终模型
final_mod = RandomForestClassifier(max_depth=10, max_features='sqrt', n_estimators=500) final_mod.fit(xtrain,ytrain) final_pred = final_mod.predict(xtest) print("Accuracy Score",accuracy_score(ytest,final_pred)) cross_val = cross_val_score(final_mod,x_scaled,y,scoring='accuracy',cv=5).mean() print("Cross val score",cross_val) plot_roc_curve(final_mod,xtest,ytest) ```
我们可以看到,超参数调优后:
- 模型的整体性能有所提升。
- 准确度和交叉严重分数提高了。
- Auc 得分达到了97%。
💡 保存模型
最后我们对模型进行存储,以便后续使用或者部署上线。
```python import joblib joblib.dump(final_mod,'hr_attrition.pkl')
['hr_attrition.pkl']
```
参考链接
- 📘 图解数据分析:从入门到精通系列教程:http://www.showmeai.tech/tutorials/33
- 📘 数据科学工具库速查表 | Pandas 速查表:http://www.showmeai.tech/article-detail/101
- 📘 数据科学工具库速查表 | Seaborn 速查表:http://www.showmeai.tech/article-detail/105
- 📘 图解机器学习算法:从入门到精通系列教程:http://www.showmeai.tech/tutorials/34
- 📘 图解机器学习算法(1) | 机器学习基础知识:http://www.showmeai.tech/article-detail/185
- 📘 图解机器学习算法(2) | 模型评估方法与准则:http://www.showmeai.tech/article-detail/186
- 📘 机器学习实战 | 机器学习特征工程最全解读:http://www.showmeai.tech/article-detail/208
- 📘 深度学习教程(7) | 网络优化:超参数调优、正则化、批归一化和程序框架:http://www.showmeai.tech/article-detail/218
- whylogs工具库的工业实践!机器学习模型流程与效果监控 ⛵
- 脉脉疯传!2023年程序员生存指南;多款prompt效率加倍工具;提示工程师最全秘籍;AI裁员正在发生 | ShowMeAI日报
- 中国风?古典系?AI中文绘图创作尝鲜!⛵
- Python中内置数据库!SQLite使用指南!
- Pandas中你一定要掌握的时间序列相关高级功能
- 数据科学家赚多少?数据全分析与可视化 ⛵
- 交互式仪表板!Python轻松完成!⛵
- ChatGPT!我是你的破壁人;比尔·盖茨不看好Web3与元宇宙;FIFA押中4届世界杯冠军;GitHub今日热榜 | ShowMeAI资讯日报
- ChatGPT要收费了;华尔街大裁员;阿里2023十大科技趋势;小红书元宇宙虚拟服饰被吐槽;GitHub今日热榜 | ShowMeAI资讯日报
- AI创业时代!这9个方向有钱途;AIGC再添霸榜应用Lensa;美团SemEval2022冠军方法分享;医学图像处理工具箱… | ShowMeAI资讯日报
- 嘘!P站数据分析年报;各省市疫情感染进度条;爱奇艺推出元宇宙App;You推出AI聊天机器人;GitHub今日热榜 | ShowMeAI资讯日报
- 美国公司裁员潮时间线◉科技寒冬可视化;3份报告回顾中国开发者2022;自动驾驶下半场,谁会冲出重围 | ShowMeAI每周通讯 #005-01.07
- 副业月入过万?数据有话说;扫地机器人发展到哪步了;疫情后要不要重返办公室;淘宝元宇宙直播间;GitHub今日热榜 | ShowMeAI资讯日报
- 大战谷歌!微软Bing引入ChatGPT;羊了个羊40万年薪招研发;Debian彻底移除Python2;GitHub今日热榜 | ShowMeAI资讯日报
- 酸了!乐视工作制改为四天半;高通新年裁员;AI绘画公司开始倒闭;网易入股张艺谋元宇宙公司;GitHub今日热榜 | ShowMeAI资讯日报
- 要么干要么滚!推特开始裁员了;深度学习产品应用·随书代码;可分离各种乐器音源的工具包;Transformer教程;前沿论文 | ShowMeAI资讯日报
- 真实世界的人工智能应用落地——OpenAI篇 ⛵
- 阳过→阳康,数据里的时代侧影;谷歌慌了!看各公司如何应对ChatGPT;两份优质AI年报;本周技术高光时刻 | ShowMeAI每周通讯 #003-12.24
- 用魔法打败魔法!这件毛衣让摄像头看不到你;两款酷炫的AI写作软件;快如闪电的B站下载工具;基于扩散模型的蛋白质设计 | ShowMeAI资讯日报
- 一文读懂!异常检测全攻略!从统计方法到机器学习 ⛵