如何在 R 中绘制观察到的与预测的散点图?我还想在其中显示回归线。
library(car)
summary(Prestige)
head(Prestige)
testidx <- which(1:nrow(Prestige)%%4==0)
prestige_train <- Prestige[-testidx,]
prestige_test <- Prestige[testidx,]
model <- glm(prestige~., data=prestige_train)
# Use the model to predict the output of test data
prediction <- predict(model, newdata=prestige_test)
# Check for the correlation with actual result
plot(prediction, prestige_test$prestige)
编辑:
abline(model)
上述功能abline
似乎不起作用。它确实画了一条线,但似乎不正确。
谢谢