Open xrobin opened 3 years ago
The feature is now available in the develop
branch:
r <- roc(aSAH$outcome, aSAH$s100b)
co <- coords(r, x = "all", input="recall", ret=c("recall", "precision"))
ci <- ci.coords(r, x = seq(0, 1, .1), input="recall", ret="precision")
plot(co, type="l", ylim = c(0, 1))
plot(ci, type="shape")
plot(ci, type="bars")
lines(co)
Follow-up of #67.
ci.coords
should be able to accept every coordinate thatcoords
takes.An application would be to add error bars on PR curves