如何知道ROC曲线上特定截止值的X值

时间:2019-04-02 22:54:50

标签: r glm roc

  1. 我使用GLM进行了多元回归
  2. 制作ROC曲线
  3. 具有阈值,灵敏度和特异性的最佳点

问题:我需要知道特定阈值点(edad + hor_1 + hijos_viv + focos_inca + focos_ahor + renta + estim_pago + tot_hom + tot_muj + tot_hog + Rural + Propietario)中X变量的值。 R中有没有办法得到它们?

res_reglog02 <- glm(Pobreza~edad+hor_1+hijos_viv+focos_inca+focos_ahor+renta+estim_pago+tot_hom+tot_muj+tot_hog+Rural+Propietario, family = binomial())
summary(res_reglog02)
res_reglog02roc <- roc(Pobreza,as.vector(res_reglog02$fitted.values))
plot(res_reglog02roc)
coords(res_reglog02roc, "best", "threshold")

0 个答案:

没有答案