Hi, I have run an roc regression with a binary outcome binvar1 and continuous predictor contvar2, setting it at 95% specificity (5% false positives) to get the sensitivity at this cut-off. Is there a way to get the value of the continuous predictor var2 at 95% specificity?

rocreg binvar1 contvar2, cluster(eye) ctrlmod(linear) ctrlcov(age) bseed(1000) nodots bootcc roc(0.05)

How do I find out what the numeric cut-off is for the continuous variable at 95% specificity?

Thank you for your help.