随机森林回归的残差(Python)

时间:2013-05-11 22:51:17

标签: python python-2.7 numpy scipy scikit-learn

使用Sklearn的RandomForestRegressor时,如何获得回归的残差?我想绘制出这些残差来检查线性度。

1 个答案:

答案 0 :(得分:4)

没有这方面的功能,因为我们希望保持界面非常简单。 你可以做到

y - rf.predict(X)