Skip to content

Commit 3da9573

Browse files
author
“jake”
committed
.
1 parent 7296f6d commit 3da9573

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

explainability.rst

+4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ Decision trees and other tree ensemble models, by default, allow us to obtain th
1313
import pandas as pd
1414
from sklearn.ensemble import RandomForestClassifier
1515
16+
import matplotlib.pyplot as plt
17+
%config InlineBackend.figure_format = 'retina'
18+
%matplotlib inline
19+
1620
rf = RandomForestClassifier()
1721
model = rf.fit(X_train, y_train)
1822

0 commit comments

Comments
 (0)