roc_plot | R Documentation |
Plot a receiver operating characteristic curve for a binary predictive model
roc_plot(actual, prob, positive, n.cuts = 20, labelsize = 3, digits = 2)
actual |
actual class. |
prob |
predicted probability for the target class |
positive |
label for the target class |
n.cuts |
number of probability cut-points to plot |
labelsize |
size of cutpoint labels |
digits |
number of decimal digits in the cutpoint labels |
a ggplot2 graph
# logistic regression fit <- glm(caesarian ~ ., family=binomial, caesarian) prob <- predict(fit, newdata=caesarian, type="response") roc_plot(caesarian$caesarian, prob, positive="yes")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.