ROCplot {bimixt} | R Documentation |
Creates a ROC plot.
ROCplot(model, direction = "auto")
model |
an object of type model from |
direction |
same as |
Plots empirical and model-based estimates of the receiver operator characteristic (ROC) curve. The empirical plot comes from the pROC package.
Michelle Winerip, Garrick Wallstrom, Joshua LaBaer
Xavier Robin, Natacha Turck, Alexandre Hainard, et al. (2011) "pROC: an open-source package for R and S+ to analyze and compare ROC curves". BMC Bioinformatics, 7, 77. DOI: 10.1186/1471-2105-12-77.
cases=rmix(50,10,1.2,20,1.3,.7) controls=rmix(50,9,1.1,17,1.3,.95) model=bimixt.model(cases,controls,"4c") ROCplot(model)