为带有r中的晶格的随机森林模型将qqline添加到普通qqplot

时间:2018-10-30 06:36:34

标签: r random-forest lattice diagnostics qq

我想使用lattice R包为随机森林模型将qq-line添加到普通qq-plot中。我知道可以在ggplotplotly中进行此操作,但是这次我对lattice感兴趣。

data("cars")

library(randomForest)
library(lattice)

rf_model <- randomForest(speed ~ dist, data = cars)
residuals <- predict(rf_model, cars) - cars$speed

qqmath( ~ residuals, main = "Normal Q-Q plot", 
                     xlab = "Theorethical quantiles",
                     ylab = "Residuals")

0 个答案:

没有答案