We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Follow-up of #67.
ci.coords should be able to accept every coordinate that coords takes.
ci.coords
coords
An application would be to add error bars on PR curves
r <- roc(aSAH$outcome, aSAH$s100b) coords(r, x = seq(0, 1, .1), input="recall", ret="precision") ci <- ci.coords(r, x = seq(0, 1, .1), input = "recall", ret="precision") plot(ci)
The text was updated successfully, but these errors were encountered:
Accept all inputs from coords in ci.coords (#90)
d9df2d8
The feature is now available in the develop branch:
develop
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)
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: