scikit-learn/examples/ensemble/plot_forest_importances.py

55 lines
1.8 KiB
Python
Raw Normal View History

"""
=========================================
Feature importances with forests of trees
=========================================
This examples shows the use of forests of trees to evaluate the importance of
features on an artificial classification task. The red bars are the feature
2012-07-19 17:42:04 +08:00
importances of the forest, along with their inter-trees variability.
2012-07-19 17:42:04 +08:00
As expected, the plot suggests that 3 features are informative, while the
remaining are not.
"""
print(__doc__)
import numpy as np
import matplotlib.pyplot as plt
from sklearn.datasets import make_classification
2011-12-20 02:00:43 +08:00
from sklearn.ensemble import ExtraTreesClassifier
# Build a classification task using 3 informative features
X, y = make_classification(n_samples=1000,
n_features=10,
n_informative=3,
n_redundant=0,
n_repeated=0,
n_classes=2,
random_state=0,
shuffle=False)
# Build a forest and compute the feature importances
2011-12-28 00:54:25 +08:00
forest = ExtraTreesClassifier(n_estimators=250,
random_state=0)
forest.fit(X, y)
2011-12-28 00:54:25 +08:00
importances = forest.feature_importances_
2012-09-05 00:24:01 +08:00
std = np.std([tree.feature_importances_ for tree in forest.estimators_],
axis=0)
indices = np.argsort(importances)[::-1]
# Print the feature ranking
print("Feature ranking:")
for f in range(X.shape[1]):
print("%d. feature %d (%f)" % (f + 1, indices[f], importances[indices[f]]))
2012-07-19 17:42:04 +08:00
# Plot the feature importances of the forest
plt.figure()
plt.title("Feature importances")
plt.bar(range(X.shape[1]), importances[indices],
2012-07-19 17:42:04 +08:00
color="r", yerr=std[indices], align="center")
plt.xticks(range(X.shape[1]), indices)
plt.xlim([-1, X.shape[1]])
plt.show()