Skip to main content

Decision tree visualization

Project description

pybaobabdt Package

The pybaobabdt package provides a python implementation for the visualization of decision trees. The technique is based on the scientific paper BaobabView: Interactive construction and analysis of decision trees developed by the TU/e. A typical decision tree is visualized using a standard node link diagram:

The problem, however, is that information is not easily extracted from this. Which classes are easy to separate for example, which classes are similar, where does the main flow of items go etc. Therefore, we developed techniques to answer these questions with a scalable visualization:

Note, this is the same decision tree as the standard node-link diagram above. Each class is represented by a color, the width of the link represents the number of items flowing from one node to the other.

Installation

Currently it is supported on Python3.6 onwards. The package can be installed through pip:

$ pip install pybaobabdt

Requirements

This implementation requires Graphviz. Graphviz can be installed using:

$ sudo apt-get install graphviz graphviz-dev

Furthermore it depends on the following python packages (sklearn, numpy, pygraphviz, matplotlib, scipy, pandas), which can be installed through pip:

$ python3 -m pip install -r requirements.txt

Usage

The following example illustrates the ease of use of this package. First build (or load) a decision tree classifier with sklearn:

import pybaobabdt
import pandas as pd
from scipy.io import arff
from sklearn.tree import DecisionTreeClassifier

data = arff.loadarff('winequality-red.arff')
df   = pd.DataFrame(data[0])

y = list(df['class'])
features = list(df.columns)
features.remove('class')
X = df.loc[:, features]

clf = DecisionTreeClassifier().fit(X,y)

Next, use pybaobab to visualize it:

ax = pybaobabdt.drawTree(clf, size=10, dpi=72, features=features)

You can then save it to a file with for example:

ax.get_figure().savefig('tree.png', format='png', dpi=300, transparent=True)

Also, trees from a RandomForest classifier can be visualized and saved to a high-resolution image for inspection:

import pybaobabdt
import pandas as pd
from scipy.io import arff
import matplotlib.pyplot as plt
from sklearn.ensemble import RandomForestClassifier

data = arff.loadarff('vehicle.arff')

df = pd.DataFrame(data[0])
y = list(df['class'])
features = list(df.columns)
features.remove('class')
X = df.loc[:, features]

clf = RandomForestClassifier(n_estimators=20, n_jobs=-1, random_state=0)
clf.fit(X, y)

Save to image:

size = (15,15)
plt.rcParams['figure.figsize'] = size
fig = plt.figure(figsize=size, dpi=300)

for idx, tree in enumerate(clf.estimators_):
    ax1 = fig.add_subplot(5, 4, idx+1)
    pybaobabdt.drawTree(tree, model=clf, size=15, dpi=300, features=features, ax=ax1)
    
fig.savefig('random-forest.png', format='png', dpi=1200, transparent=True)

Options

There are several different options that can be used in the drawTree function.

  • colormap='plasma' (all matplotlib colormaps are supported)

You can also define your own colormap, which could be useful to highlight a specific class for example:

#colors = [[1,0,0], [0,1,0], [0,0,1], [1,1,0]]
colors = ["gray", "gray", "purple", "gray"]
colorMap = ListedColormap(colors)

ax = pybaobabdt.drawTree(clf, size=10, dpi=72, features=features, colormap=colorMap)
  • maxdepth=3 (set the maximum depth of the tree to render, this can be useful for large trees, to inspect only the top splits.)
  • ratio=0.5 (sets the aspect ratio of the tree, default = 1)

Note that examples can be found in the 'notebooks' folder containing jupyter notebook examples.

License

GNU General Public License v3.0

Reference

If you need to reference this work please use the following bibtex entry:

@INPROCEEDINGS{Elzen2011,
  author={van den Elzen, Stef and van Wijk, Jarke J.},
  booktitle={2011 IEEE Conference on Visual Analytics Science and Technology (VAST)}, 
  title={BaobabView: Interactive construction and analysis of decision trees}, 
  year={2011},
  pages={151-160},
  doi={10.1109/VAST.2011.6102453}}

S. van den Elzen and J. J. van Wijk, "BaobabView: Interactive construction and analysis of decision trees," 2011 IEEE Conference on Visual Analytics Science and Technology (VAST), 2011, pp. 151-160, doi: 10.1109/VAST.2011.6102453.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pybaobabdt-1.0.1.tar.gz (22.5 kB view hashes)

Uploaded Source

Built Distribution

pybaobabdt-1.0.1-py3-none-any.whl (20.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page