当前位置:   article > 正文

python金融风控评分卡模型和数据分析_python风控数据查得率

python风控数据查得率

在这里插入图片描述
在这里插入图片描述


import matplotlib.pyplot as plt

from sklearn.ensemble import RandomForestClassifier

from sklearn.model_selection import train_test_split

df=pd.read_excel(readFileName)

list_columns=list(df.columns[:-1])

x_train,x_test,y_train,y_test=train_test_split(X,y,random_state=0)

#n_estimators表示树的个数,测试中100颗树足够

forest=RandomForestClassifier(n_estimators=trees,random_state=0)

forest.fit(x_train,y_train)

print("random forest with %d trees:"%trees)

print("accuracy on the training subset:{:.3f}".format(forest.score(x_train,y_train)))

print("accuracy on the test subset:{:.3f}".format(forest.score(x_test,y_test)))

print('Feature importances:{}'.format(forest.feature_importances_))

plt.barh(range(n_features),forest.feature_importances_,align='center')

plt.yticks(np.arange(n_features),names)

plt.title("random forest with %d trees:"%trees)

plt.xlabel('Feature Importance')


  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36

决策树可视化
在这里插入图片描述

神经网络可视化
在这里插入图片描述

版权声明:文章来自公众号(python风控模型),未经许可,不得抄袭。遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/552524
推荐阅读
相关标签
  

闽ICP备14008679号