("AveOccup", "HouseAge")]
plot_partial_dependence(est, X_train, features,
n_jobs=3, grid_resolution=20)
print("done in {:.3f}s".format(time() - tic))
fig = plt.gcf()
fig.suptitle("Partial dependence of house value on non-location features\n"
"for the California housing dataset, with Gradient Boosting")
After Change
"Partial dependence of house value on non-location features\n"
"for the California housing dataset, with Gradient Boosting"
)
display.figure_.subplots_adjust(wspace=0.4, hspace=0.3)
// %%
// Analysis of the plots
// .....................