plot.BranchGLMROC {BranchGLM} | R Documentation |
This plots a ROC curve.
## S3 method for class 'BranchGLMROC'
plot(x, ...)
x |
a |
... |
arguments passed to generic plot function. |
No return value, called to create the plot.
Data <- ToothGrowth
Fit <- BranchGLM(supp ~ ., data = Data, family = "binomial", link = "logit")
MyROC <- ROC(Fit)
plot(MyROC)