click.Roc {ModelGood} | R Documentation |
Show marker value sensitivity and specificity at mouse point
click.Roc(object, pch = 19, label = TRUE, adj, col = "orange", cex = 3, ...)
object |
An object obtained with function
|
pch |
the symbol of the tag |
label |
If TRUE label the tag. |
adj |
passed to |
col |
the color of the tag |
cex |
the size of the tag |
... |
passed to |
A tag is set on the ROC curve at the mouse click and corresponding marker value, sensitivity and specificity shown below the click-point.
the values at the tag
Thomas A. Gerds <tag@biostat.ku.dk>
identify Roc
## Not run: x <- abs(rnorm(20)) d <- data.frame(y=rbinom(1:20,1,p=x/max(x))) r <- Roc(y~x,data=d) plot(r) click.Roc(r) ## End(Not run)