我正在使用此page执行逻辑回归。我的代码如下。
mydata <- read.csv("http://www.ats.ucla.edu/stat/data/binary.csv")
mylogit <- glm(admit ~ gre, data = mydata, family = "binomial")
summary(mylogit)
prob=predict(mylogit,type=c("response"))
mydata$prob=prob
运行此代码后,mydata dataframe有两列 - 'admit'和'prob'。 这两列不应该足以获得ROC曲线吗?
如何获得ROC曲线。
其次,通过嘲笑mydata,似乎模型正在预测admit=1
的可能性。
这是对的吗?
如何找出模型预测的特定事件?
由于
更新: 似乎以下三个命令非常有用。它们提供了最大精度的截止值,然后有助于获得ROC曲线。
coords(g, "best")
mydata$prediction=ifelse(prob>=0.3126844,1,0)
confusionMatrix(mydata$prediction,mydata$admit
答案 0 :(得分:27)
ROC曲线比较预测和答案的等级。因此,您可以使用包pROC
评估ROC曲线,如下所示:
mydata <- read.csv("http://www.ats.ucla.edu/stat/data/binary.csv")
mylogit <- glm(admit ~ gre, data = mydata, family = "binomial")
summary(mylogit)
prob=predict(mylogit,type=c("response"))
mydata$prob=prob
library(pROC)
g <- roc(admit ~ prob, data = mydata)
plot(g)
答案 1 :(得分:8)
另一种绘制ROC曲线的方法......
library(Deducer)
modelfit <- glm(formula=admit ~ gre + gpa, family=binomial(), data=mydata, na.action=na.omit)
rocplot(modelfit)
答案 2 :(得分:2)
#Another way to plot ROC
mydata <- read.csv("http://www.ats.ucla.edu/stat/data/binary.csv")
mylogit <- glm(admit ~ gre, data = mydata, family = "binomial")
summary(mylogit)
prob=predict(mylogit,type=c("response"))
library("ROCR")
pred <- prediction(prob, mydata$admit)
perf <- performance(pred, measure = "tpr", x.measure = "fpr")
plot(perf, col=rainbow(7), main="ROC curve Admissions", xlab="Specificity",
ylab="Sensitivity")
abline(0, 1) #add a 45 degree line