plot_ROC | R Documentation |
Draw ROC curves
plot_ROC(
x,
show.points = TRUE,
show.eta = TRUE,
show.sens = TRUE,
show.AUC = TRUE,
facet = FALSE
)
x |
A list of class multipleROC |
show.points |
logical |
show.eta |
logical |
show.sens |
logical |
show.AUC |
logical |
facet |
logical |
A ggplot
require(moonBook)
a=multipleROC(male~height,data=radial)
plot(a)
b=multipleROC(male~age,data=radial)
plot_ROC(list(a,b))
c=multipleROC(form=male~weight,data=radial)
plot_ROC(list(a,b,c),show.eta=FALSE,show.sens=FALSE)
plot_ROC(list(a,b,c),facet=TRUE)
require(ggplot2)
plot_ROC(list(a,b,c))+facet_grid(no~.)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.