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
The pROC package allowed me to plot roc curves easily and quickly, and added the ggroc() to be able to modify figures more easily.
ggroc()
But is it possible to plot roc curves with polygon using the ggroc() ? Like the plot.roc(auc.polygon = T).
plot.roc(auc.polygon = T)
The text was updated successfully, but these errors were encountered:
I guess that would be fairly easy to implement.
Sorry, something went wrong.
Add geom_polygon_auc function (issue #129)
bd984d5
I added an experimental geom_polygon_auc function:
geom_polygon_auc
data(aSAH) roc.s100b <- roc(aSAH$outcome, aSAH$s100b) ggroc(roc.s100b) + geom_polygon_auc(roc.s100b$auc)
It's not as easy, as the polygon appears in front of the ROC curve. I need to think how to work around that - suggestions welcome.
Fix test (issue #129)
194cf86
Add details (issue #129)
23d59ac
No branches or pull requests
The pROC package allowed me to plot roc curves easily and quickly, and added the
ggroc()
to be able to modify figures more easily.But is it possible to plot roc curves with polygon using the
ggroc()
? Like theplot.roc(auc.polygon = T)
.The text was updated successfully, but these errors were encountered: