Hi,
Another fun puzzle for the RM team.

I've run a model that outputs confidence values for an SVM class. The values range from 0 to 1 (as expected for this type of model.)
One very common method of evaluation I've seen in papers is to break the results into "bins" or "groups" by confidence range and then report the accuracy of each range.
Something like
Range | # predicted | # correct | % correct |
60-65 | 35 | 21 | 60 |
55-60 | 130 | 75 | 57.6 |
Any way to this sort of analysis in RM??
Thanks!