coords should be able to accept every coordinate it returns as input.
For instance:
r <- roc(aSAH$outcome, aSAH$s100b)
coords(r, x = seq(0, 1, .1), input="recall", ret="precision")
An application would be to add error bars on PR curves, which should be addressed in a follow-up issue:
ci <- ci.coords(r, x = seq(0, 1, .1), input = "recall", ret="precision")
plot(ci)
coordsshould be able to accept every coordinate it returns as input.For instance:
An application would be to add error bars on PR curves, which should be addressed in a follow-up issue: