scikitplot.estimators.plot_learning_curve生成不同训练样本下的训练和测试学习曲线图。 importscikitplotasskplt rf = RandomForestClassifier skplt.estimators.plot_learning_curve(rf, X, y) plt.show scikitplot.estimators.plot_feature_importances可视化特征重要性。 importscikitplotasskplt rf = RandomForestCla...