首先,让我们使用决策树结构上的scikit文档获取有关所构建树的信息:
n_nodes = clf.tree_.node_countchildren_left = clf.tree_.children_leftchildren_right = clf.tree_.children_rightfeature = clf.tree_.featurethreshold = clf.tree_.threshold
然后,我们定义两个递归函数。第一个将找到树根的路径以创建一个特定节点(本例中的所有叶子)。第二个将使用其创建路径编写用于创建节点的特定规则:
def find_path(node_numb, path, x): path.append(node_numb) if node_numb == x: return True left = False right = False if (children_left[node_numb] !=-1): left = find_path(children_left[node_numb], path, x) if (children_right[node_numb] !=-1): right = find_path(children_right[node_numb], path, x) if left or right : return True path.remove(node_numb) return Falsedef get_rule(path, column_names): mask = '' for index, node in enumerate(path): #We check if we are not in the leaf if index!=len(path)-1: # Do we go under or over the threshold ? if (children_left[node] == path[index+1]): mask += "(df['{}']<= {}) t ".format(column_names[feature[node]], threshold[node]) else: mask += "(df['{}']> {}) t ".format(column_names[feature[node]], threshold[node]) # We insert the & at the right places mask = mask.replace("t", "&", mask.count("t") - 1) mask = mask.replace("t", "") return mask最后,我们使用这两个函数来首先存储每个叶子的创建路径。然后存储用于创建每个叶子的规则:
# Leavesleave_id = clf.apply(X_test)paths ={}for leaf in np.unique(leave_id): path_leaf = [] find_path(0, path_leaf, leaf) paths[leaf] = np.unique(np.sort(path_leaf))rules = {}for key in paths: rules[key] = get_rule(paths[key], pima.columns)使用您提供的数据,输出为:
rules ={3: "(df['insulin']<= 127.5) & (df['bp']<= 26.450000762939453) & (df['bp']<= 9.100000381469727) ", 4: "(df['insulin']<= 127.5) & (df['bp']<= 26.450000762939453) & (df['bp']> 9.100000381469727) ", 6: "(df['insulin']<= 127.5) & (df['bp']> 26.450000762939453) & (df['skin']<= 27.5) ", 7: "(df['insulin']<= 127.5) & (df['bp']> 26.450000762939453) & (df['skin']> 27.5) ", 10: "(df['insulin']> 127.5) & (df['bp']<= 28.149999618530273) & (df['insulin']<= 145.5) ", 11: "(df['insulin']> 127.5) & (df['bp']<= 28.149999618530273) & (df['insulin']> 145.5) ", 13: "(df['insulin']> 127.5) & (df['bp']> 28.149999618530273) & (df['insulin']<= 158.5) ", 14: "(df['insulin']> 127.5) & (df['bp']> 28.149999618530273) & (df['insulin']> 158.5) "}由于规则是字符串,因此不能使用直接调用它们
df[rules[3]],而必须像这样使用eval函数
df[eval(rules[3])]



