I have a data with 2 variables: diagnosis- yes/no Score- numeric variable from 0-10. I need to do ROC analysis for this data and to find the best cut off values.
The problem is the data is too small so I can't split it to train and test data.
I understand I need to do build a bootstraped data set, build the model and then see how it functions on the original data and repeat this process X times. From what I have read I can achieve that by rms:validate in r.
However, this gives me only the general AUC without the ability to run and plot models with different cut-offs of the score. Is there another way to achieve my goal? Thank you