机器学习实战精读--------决策树

感觉自己像个学走路的孩子,每一步都很吃力和认真!

机器根据数据集创建规则,就是机器学习。

决策树:从数据集合中提取一系列规则,适用于探索式的知识发现。

决策树本质:通过一系列规则对数据进行分类的过程。

决策树算法核心:构建精度高,数据规模小的决策树。

ID3算法:此算法目的在于减少树的深度,但是忽略了叶子数目的研究。

C4.5算法:对ID3进行改进,对于预测变量的缺失值处理、剪枝技术、派生规则等方面作了较大改进,既适合分类,又适合回归。

香农熵:变量的不确定性越大,熵也就越大,把它搞清楚所需要的信息量也就越大。

基尼不纯度:一个随机事件变成它的对立事件的概率。

#coding:utf-8
from math import log
import operator

#创建数据
def createDataSet():
    dataSet = [[1, 1, ‘yes‘],
               [1, 1, ‘yes‘],
               [1, 0, ‘no‘],
               [0, 1, ‘no‘],
               [0, 1, ‘no‘]]
    labels = [‘no surfacing‘,‘flippers‘]
    #change to discrete values
    return dataSet, labels

#计算给定数据集的香农熵
def calcShannonEnt(dataSet):
    numEntries = len(dataSet)
	#输出列表的的长度 值为:5
    labelCounts = {}
    for featVec in dataSet: 
	#对二维数组进行遍历
        currentLabel = featVec[-1]
        #把每个子列表的最后一个元素赋值给currentLabel
        if currentLabel not in labelCounts.keys(): labelCounts[currentLabel] = 0
        #如果currentLabel 不在字典中,把字典的值设置为0
        # keys() 函数以列表返回一个字典所有的键。
        labelCounts[currentLabel] += 1
        #这一步是统计出现的次数,每次匹配到的话,把对应key的值加1
    #操作完以后labelCounts字典记录的是yes出现2次  no出现3次
    shannonEnt = 0.0
    for key in labelCounts:
        prob = float(labelCounts[key])/numEntries
        #prob是字典labelCounts每个key的比率
        shannonEnt -= prob * log(prob,2) 
		#log(x, 2) 表示以2为底的对数。
    return shannonEnt
	#熵数字越大,说明混合的数据越多

#按照给定特征划分数据集    
def splitDataSet(dataSet, axis, value):
	#dataSet:待划分的数据集;axis:划分数据集的特征;value:需要返回的特征的值
    retDataSet = []
    for featVec in dataSet:
        if featVec[axis] == value:
            #如果featVec列表的特征值跟valve值一样
            reducedFeatVec = featVec[:axis] 
            #输出列表featVec开头到特征值的列表切片    
            reducedFeatVec.extend(featVec[axis+1:])
            retDataSet.append(reducedFeatVec)
    return retDataSet

#选择最好的数据集划分方式    
def chooseBestFeatureToSplit(dataSet):
    numFeatures = len(dataSet[0]) - 1      #the last column is used for the labels
    baseEntropy = calcShannonEnt(dataSet)
    bestInfoGain = 0.0; bestFeature = -1
    for i in range(numFeatures):        #iterate over all the features
        featList = [example[i] for example in dataSet]#create a list of all the examples of this feature
        uniqueVals = set(featList)       #get a set of unique values
        newEntropy = 0.0
        for value in uniqueVals:
            subDataSet = splitDataSet(dataSet, i, value)
            prob = len(subDataSet)/float(len(dataSet))
            newEntropy += prob * calcShannonEnt(subDataSet)     
        infoGain = baseEntropy - newEntropy     #calculate the info gain; ie reduction in entropy
        if (infoGain > bestInfoGain):       #compare this to the best gain so far
            bestInfoGain = infoGain         #if better than current best, set to best
            bestFeature = i
    return bestFeature                      #returns an integer

def majorityCnt(classList):
    classCount={}
    for vote in classList:
        if vote not in classCount.keys(): classCount[vote] = 0
        classCount[vote] += 1
    sortedClassCount = sorted(classCount.iteritems(), key=operator.itemgetter(1), reverse=True)
    return sortedClassCount[0][0]

def createTree(dataSet,labels):
    classList = [example[-1] for example in dataSet]
    if classList.count(classList[0]) == len(classList): 
        return classList[0]#stop splitting when all of the classes are equal
    if len(dataSet[0]) == 1: #stop splitting when there are no more features in dataSet
        return majorityCnt(classList)
    bestFeat = chooseBestFeatureToSplit(dataSet)
    bestFeatLabel = labels[bestFeat]
    myTree = {bestFeatLabel:{}}
    del(labels[bestFeat])
    featValues = [example[bestFeat] for example in dataSet]
    uniqueVals = set(featValues)
    for value in uniqueVals:
        subLabels = labels[:]       #copy all of labels, so trees don‘t mess up existing labels
        myTree[bestFeatLabel][value] = createTree(splitDataSet(dataSet, bestFeat, value),subLabels)
    return myTree    
                            
#使用决策树的分类函数    
def classify(inputTree,featLabels,testVec):
    firstStr = inputTree.keys()[0]
    secondDict = inputTree[firstStr]
    featIndex = featLabels.index(firstStr)
    key = testVec[featIndex]
    valueOfFeat = secondDict[key]
    if isinstance(valueOfFeat, dict): 
        classLabel = classify(valueOfFeat, featLabels, testVec)
    else: classLabel = valueOfFeat
    return classLabel

#使用pickle模块存储决策树    
def storeTree(inputTree,filename):
    import pickle
    fw = open(filename,‘w‘)
    pickle.dump(inputTree,fw)
    fw.close()
    
def grabTree(filename):
    import pickle
    fr = open(filename)
    return pickle.load(fr)
#coding:utf-8
import matplotlib as mpl
mpl.use(‘Agg‘)
import matplotlib.pyplot as plt

decisionNode = dict(boxstyle="sawtooth", fc="0.8")
leafNode = dict(boxstyle="round4", fc="0.8")
arrow_args = dict(arrowstyle="<-")

def getNumLeafs(myTree):
    numLeafs = 0
    firstStr = myTree.keys()[0]
    secondDict = myTree[firstStr]
    for key in secondDict.keys():
        if type(secondDict[key]).__name__==‘dict‘:#test to see if the nodes are dictonaires, if not they are leaf nodes
            numLeafs += getNumLeafs(secondDict[key])
        else:   numLeafs +=1
    return numLeafs

def getTreeDepth(myTree):
    maxDepth = 0
    firstStr = myTree.keys()[0]
    secondDict = myTree[firstStr]
    for key in secondDict.keys():
        if type(secondDict[key]).__name__==‘dict‘:#test to see if the nodes are dictonaires, if not they are leaf nodes
            thisDepth = 1 + getTreeDepth(secondDict[key])
        else:   thisDepth = 1
        if thisDepth > maxDepth: maxDepth = thisDepth
    return maxDepth

def plotNode(nodeTxt, centerPt, parentPt, nodeType):
    createPlot.ax1.annotate(nodeTxt, xy=parentPt,  xycoords=‘axes fraction‘,
             xytext=centerPt, textcoords=‘axes fraction‘,
             va="center", ha="center", bbox=nodeType, arrowprops=arrow_args )
    
def plotMidText(cntrPt, parentPt, txtString):
    xMid = (parentPt[0]-cntrPt[0])/2.0 + cntrPt[0]
    yMid = (parentPt[1]-cntrPt[1])/2.0 + cntrPt[1]
    createPlot.ax1.text(xMid, yMid, txtString, va="center", ha="center", rotation=30)

def plotTree(myTree, parentPt, nodeTxt):#if the first key tells you what feat was split on
    numLeafs = getNumLeafs(myTree)  #this determines the x width of this tree
    depth = getTreeDepth(myTree)
    firstStr = myTree.keys()[0]     #the text label for this node should be this
    cntrPt = (plotTree.xOff + (1.0 + float(numLeafs))/2.0/plotTree.totalW, plotTree.yOff)
    plotMidText(cntrPt, parentPt, nodeTxt)
    plotNode(firstStr, cntrPt, parentPt, decisionNode)
    secondDict = myTree[firstStr]
    plotTree.yOff = plotTree.yOff - 1.0/plotTree.totalD
    for key in secondDict.keys():
        if type(secondDict[key]).__name__==‘dict‘:#test to see if the nodes are dictonaires, if not they are leaf nodes   
            plotTree(secondDict[key],cntrPt,str(key))        #recursion
        else:   #it‘s a leaf node print the leaf node
            plotTree.xOff = plotTree.xOff + 1.0/plotTree.totalW
            plotNode(secondDict[key], (plotTree.xOff, plotTree.yOff), cntrPt, leafNode)
            plotMidText((plotTree.xOff, plotTree.yOff), cntrPt, str(key))
    plotTree.yOff = plotTree.yOff + 1.0/plotTree.totalD
#if you do get a dictonary you know it‘s a tree, and the first element will be another dict

def createPlot(inTree):
    fig = plt.figure(1, facecolor=‘white‘)
    fig.clf()
    axprops = dict(xticks=[], yticks=[])
    createPlot.ax1 = plt.subplot(111, frameon=False, **axprops)    #no ticks
    #createPlot.ax1 = plt.subplot(111, frameon=False) #ticks for demo puropses 
    plotTree.totalW = float(getNumLeafs(inTree))
    plotTree.totalD = float(getTreeDepth(inTree))
    plotTree.xOff = -0.5/plotTree.totalW; plotTree.yOff = 1.0;
    plotTree(inTree, (0.5,1.0), ‘‘)
    plt.savefig(‘trees.png‘)
‘‘‘
def createPlot():
    fig = plt.figure(1, facecolor=‘white‘)
	#创建第一张图,设置背景色是白色
    fig.clf()
    createPlot.ax1 = plt.subplot(111, frameon=False) #ticks for demo puropses 
    plotNode(‘a decision node‘, (0.5, 0.1), (0.1, 0.5), decisionNode)
    plotNode(‘a leaf node‘, (0.8, 0.1), (0.3, 0.8), leafNode)
    plt.savefig(‘trees.png‘)
‘‘‘
def retrieveTree(i):
    listOfTrees =[{‘no surfacing‘: {0: ‘no‘, 1: {‘flippers‘: {0: ‘no‘, 1: ‘yes‘}}}},
                  {‘no surfacing‘: {0: ‘no‘, 1: {‘flippers‘: {0: {‘head‘: {0: ‘no‘, 1: ‘yes‘}}, 1: ‘no‘}}}}
                  ]
    return listOfTrees[i]

小结:

一、一棵最优决策树主要应解决以下三个问题:

① 生成最少数目的叶子节点

② 生成每个叶子节点的深度最小

③ 生成的决策树叶子节点最少且每个叶子节点深度最小

二、如果叶子节点只能增加少许信息,则可以删除该节点,将它并入到其它节点中去。

三、ID3算法无法直接处理数值型数据。

四、采用文本方式很难展示决策树,所以要用Matplotlib注解绘制树型图。

时间: 2024-08-09 21:58:57

机器学习实战精读--------决策树的相关文章

机器学习实战精读--------K-近邻算法

对机器学习实战的课本和代码进行精读,帮助自己进步. #coding:utf-8 from numpy import * import operator #运算符模块 from os import listdir  #os.listdir() 方法用于返回指定的文件夹包含的文件或文件夹的名字的列表.这个列表以字母顺序. 它不包括 '.' 和'..' 即使它在文件夹中. #创建数据集和标签 def createDataSet():     group = array([[1.0,1.1],[1.0,

机器学习实战精读--------主成分分析(PCA)

对数据进行简化的原因: ① 使得数据集更容易使用 ② 降低许多算法的计算开销 ③ 去除噪声 ④ 使得结果易懂 方差是衡量数据源和期望值相差的度量值. PCA:数据从原来的坐标系转换到新的坐标系,新坐标系是有数据本身决定的. 因子分析:假设观察数据的生成中有一些观察不到的隐变量,假设观察数据是这些隐变量和某些财政所呢个的线性组合. 独立成分分析(ICA):假设数据是从N个数据源生成的,如果数据源的数目小于观察数据的数目,则可以实现降维过程. 通过PCA进行降维处理,我们可以同时获得SVM和决策树的

《机器学习实战》——决策树

原理(ID3): 依次选定每个特征,计算信息增益(基本信息熵-当前信息熵),选择信息增益最大的一个作为最佳特征: 以该特征作为树的根节点,以该最佳特征的每一个值作为分支,建立子树: 重复上述过程,直到:1) 所有类别一致 2) 特征用尽 优点: 简单容易理解: 可处理有缺失值的特征.非数值型数据: 与训练数据拟合很好,复杂度小 缺点: 选择特征时候需要多次扫描与排序,适合常驻内存的小数据集: 容易过拟合: 改进: ID3算法偏向取值较多的特征(宽且浅的树),适合离散型数据,难处理连续型数据.香农

机器学习实战笔记--决策树

tree.py代码 1 #encoding:utf-8 2 from math import log 3 import operator 4 import treePlotter as tp 5 6 7 def createDataSet(): #简单测试数据创建 8 dataSet = [[1, 1, 'yes'], 9 [1, 1, 'yes'], 10 [1, 0, 'no'], 11 [0, 1, 'no'], 12 [0, 1, 'no']] 13 labels = ['no surf

机器学习实战精读--------logistic回归

Logistic回归的主要目的:寻找一个非线性函数sigmod最佳的拟合参数 拟合.插值和逼近是数值分析的三大工具 回归:对一直公式的位置参数进行估计 拟合:把平面上的一些系列点,用一条光滑曲线连接起来 logistic主要思想:根据现有数据对分类边界线建立回归公式.以此进行分类 sigmoid函数:在神经网络中它是所谓的激励函数.当输入大于0时,输出趋向于1,输入小于0时,输出趋向0,输入为0时,输出为0.5 梯度上升:要找到某个函数的最大值,最好的方法是沿着该函数的梯度方向探寻 收敛:随着迭

机器学习实战python3 决策树ID3

代码及数据:https://github.com/zle1992/MachineLearningInAction 决策树 优点:计算复杂度不高,输出结果易于理解,对中间值的缺失不敏感,可以处理不相关特征数据. 缺点:可能会产生过度匹配问题. 适用数据类型:数值型和标称型. 创建分支的伪代码函数createBranch()如下所示:检测数据集中的每个子项是否属于同一分类:if so return 类标签; Else 寻找划分数据集的最好特征 划分数据集 创建分支节点 for 每个划分的子集 调用函

3.机器学习实战之决策树

返回目录 上一篇:k-近邻算法 1. 简单理论介绍 决策树的类型有很多,有CART.ID3和C4.5等,其中CART是基于基尼不纯度(Gini)的,这里不做详解,而ID3和C4.5都是基于信息熵的,它们两个得到的结果都是一样的,本次定义主要针对ID3算法.下面我们介绍信息熵的定义. 1.1 熵 设D为用类别对训练集进行的划分,则D的熵(entropy)表示为: 其中m表示训练集中标签种类的个数:pi表示第i个类别在整个训练集中出现的概率,可以用属于此类别元素的数量除以训练集合元素总数量作为估计:

《机器学习实战》-决策树

目录 决策树 决策树简介 决策树的构造 信息增益 划分数据集 递归构建决策树 在 Python 中使用 Matplotlib 注解绘制树形图 Matplotlib 注解 构造注解树 测试和存储分类器 测试算法:使用决策树执行分类 使用算法:决策树的存储 示例:使用决策树预测隐形眼镜类型 总结 决策树 决策树简介 在数据集中度量一致性 使用递归构造决策树 使用 Matplotlib 绘制树形图 决策树简介 让我们来玩一个游戏,你现在在你的脑海里想好某个事物,你的同桌向你提问,但是只允许问你20个问

机器学习实战精读--------Apriori算法

关联分析(关联规则学习):从大规模数据集中寻找物品间的隐含关系, Apriori算法:一种挖掘关联规则的频繁项算法,其核心是通过候选集生成和情节的向下封闭检测ll阶段来挖掘频繁项集,它是最具影响的挖掘布尔关联规则频繁集的算法 Aprior算法缺点:① 可能产生大量候选集:② 可能需要重复扫描数据库. 频繁项集:经常出现在一块的物品的集合 关联规则:暗示两种物品之间可能存在很强的关系 一个项集的支持度:数据集中包含该项集的记录所占的比例:支持度是针对项集来说的. 可信度(置信度):针对一条诸如{尿