zoukankan      html  css  js  c++  java
  • 决策树预测莺尾花数据

    import numpy as np
    import matplotlib.pyplot as plt
    from sklearn import datasets
    from sklearn import tree
    
    # 生成所有测试样本点
    def make_meshgrid(x, y, h=.02):
        x_min, x_max = x.min() - 1, x.max() + 1
        y_min, y_max = y.min() - 1, y.max() + 1
        #生成所有的测试点,比如[[1,1],[2,2]] [[1,2],[1,2]]
        xx, yy = np.meshgrid(np.arange(x_min, x_max, h),
                             np.arange(y_min, y_max, h))
        return xx, yy
    
    # 对测试样本进行预测,并显示
    def plot_test_results(ax, clf, xx, yy, **params):
        Z = clf.predict(np.c_[xx.ravel(), yy.ravel()])
        Z = Z.reshape(xx.shape)
        ax.contourf(xx, yy, Z, **params)
    
    
    if __name__ == '__main__':
        # 载入iris数据集
        iris = datasets.load_iris()
        # 只使用前面两个特征
        X = iris.data[:, :2]
        # 样本标签值
        y = iris.target
    
        # 创建并训练决策树
        clf = tree.DecisionTreeClassifier()
        clf.fit(X,y)
    
        title = ('DecisionTreeClassifier')
    
        fig, ax = plt.subplots(figsize = (5, 5))
        plt.subplots_adjust(wspace=0.4, hspace=0.4)
    
        X0, X1 = X[:, 0], X[:, 1]
        # 生成所有测试样本点
        xx, yy = make_meshgrid(X0, X1)
        #print(xx)
    
        # 显示测试样本的分类结果
        plot_test_results(ax, clf, xx, yy, cmap=plt.cm.coolwarm, alpha=0.8)
        # 显示训练样本
        ax.scatter(X0, X1, c=y, cmap=plt.cm.coolwarm, s=20, edgecolors='k')
        ax.set_xlim(xx.min(), xx.max())
        ax.set_ylim(yy.min(), yy.max())
        ax.set_xlabel('x1')
        ax.set_ylabel('x2')
        ax.set_xticks(())
        ax.set_yticks(())
        ax.set_title(title)
        plt.show()
  • 相关阅读:
    Redis_配置文件
    Redis_数据使用
    QQ登录测试用例
    JMeter性能测试入门--偏重工具的使用
    浅说《测试用例》
    axure界面功能
    性能测试相关术语
    测试用例设计和测试环境搭建
    测试需求分析
    软件测试的过程
  • 原文地址:https://www.cnblogs.com/xiaochi/p/12166755.html
Copyright © 2011-2022 走看看