Anytime you create a ROC Curve with using pROC::roc() additional Information like the code itself and AUC will be plotted in rmarkdown by default below the plot.
Does anyone know how to print the ROC-Curve without the Call and Data information?
Code
roc(label, score.4ISS,
plot = TRUE,
legacy.axes = TRUE)
Thank you :)
This is because objects are implicitly
printed in R when they are not assigned to variables. This means that:is equivalent to
which prints call and data information. If you assign the ROC curve to an object, it won't be printed, and you can decide what to print yourself, for instance only the AUC (or nothing at all).