So I have been tasked with making some graphs for some data. I was asked to make some ROC curves for the data and I've seen the graphs in papers and understand what they mean, but I've never made one and I'm not sure I can with the data I have.
I have a signal with spikes in, I have a vector Ref with all the true times of those spikes, and I have vector Test that is the the times output by an algorithm whose purpose is to automatically detect said spikes.
Comparing the Ref and the Test vectors I can get TP, FN, FP, which I can calculate Sensitivity and Specificity...but isn't that just one point? Can I get more points for the ROC curve somehow from two essentially binary vectors?
As I understand it with two binary vectors,I would only have three points (0,0)-->(Specificity, Sensitivity)-->(1,1).
Am I right? Wrong? What am I missing?
I have a signal with spikes in, I have a vector Ref with all the true times of those spikes, and I have vector Test that is the the times output by an algorithm whose purpose is to automatically detect said spikes.
Comparing the Ref and the Test vectors I can get TP, FN, FP, which I can calculate Sensitivity and Specificity...but isn't that just one point? Can I get more points for the ROC curve somehow from two essentially binary vectors?
As I understand it with two binary vectors,I would only have three points (0,0)-->(Specificity, Sensitivity)-->(1,1).
Am I right? Wrong? What am I missing?