-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Access to estimate and confidence intervals for roc.test #73
Comments
What would you like to return exactly? From what I understand, you want to calculate the CI of the estimates, so changing:
Into:
How is that different from running
Can you show what you'd like to see a bit more specifically? (Doesn't need to be the exact values). In addition is this something you've seen implemented in a different test or in a different package? Do you have a reference that describes it, or a similar approach for a different test? |
I was thinking along the lines of:
Would like the CI of this estimate. This would involve altering the interface for the
I haven't seen this implemented elsewhere. |
Now you're talking about the I guess that should be doable pretty easily DeLong describes the expression for a confidence interval of I wouldn't call it I'll be happy with a pull request! You can branch off directly from master. |
Great!
Thanks for the helpful information about documentation and testing. Will give this a shot and try to have a PR in ~week. |
Any follow-up on this feature? Did you have a chance to give it a try? Of note, a possible use case was posted to stack exchange (Cross Validated): https://stats.stackexchange.com/q/461992/36682 |
I have been looking around in R for a similar need -- generate the estimate and 95% CI of the difference. Something like this as output would be lovely:
Test 1: {auc1} 95% CI: ({lcl1} to {ucl1}) |
Add confidence interval output to paired DeLong test (issue #73)
Are there any references for the CI for the unpaired test? I've been looking around a bit and I can't seem to find any literature that derives an equivalent CI in the unpaired case. |
Is your feature request related to a problem? Please describe.
Would like access to the estimate and confidence intervals when running:
Currently, the estimate returned is a repeat of roc1 and roc2 and no confidence interval is provided.
Describe the solution you'd like
It looks like the proper way to accomplish this might be to add a function like
pROC::ci::ci.roc.test
?Describe alternatives you've considered
No other suggestions...access to the estimates described above in any way would be great.
Additional context
If the described solution above is sufficient, would like a chance to submit a pull request. Please let me know if that is acceptable.
Implementation status
For quick reference, here is the status of this request:
The text was updated successfully, but these errors were encountered: