Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a row of numeric values and i want to do some kind of test to declare an threshold for those values. It should declare whether an cut of point is correct or not.

The standard thresholds are: <0.5 , between 0.5 and 0.95, >0.95

The values in the test set are:

testset<-c(0.425, 0.4758, 0.8893, 0.7684, 0.8031, 0.6657, 0.5592, 0.7207, 0.6674, 0.8323, 0.7829, 0.8398, 0.8669, 0.4804, 0.4941, 0.4316, 0.8239, 0.8461, 0.8713, 0.4195, 0.8932, 0.8229, 0.8936, 0.5011, 0.5006, 0.8493, 0.4846, 0.7783, 0.5326, 0.4964, 0.891, 0.5286, 0.4561, 0.9065, 0.8159, 0.7819, 0.8384, 0.7775, 0.6252, 0.7413, 0.6116, 0.7785, 0.844, 0.7061, 0.7783, 0.841, 0.6387, 0.5684, 0.8897, 0.8931, 0.839, 0.5128, 0.8101, 0.5926, 0.8853, 0.6804, 0.6505, 0.8359, 0.6545, 0.6274, 0.8736, 0.6687, 0.8907, 0.5888, 0.5853, 0.9211, 0.8875, 0.8038, 0.7797, 0.8209, 0.7644, 0.7879, 0.9447, 0.8359, 0.581, 0.6442, 0.9422, 0.793, 0.9445, 0.5992, 0.6297, 0.8063, 0.7079, 0.4788, 0.9207, 0.9282, 0.4716, 0.8199, 0.9224, 0.499, 0.9443, 0.6516, 0.8972, 0.6386, 0.8611, 0.7079, 0.743, 0.9249, 0.763, 0.8799, 0.7054, 0.9267, NA, 0.8394, 0.8261, 0.687, 0.7038, 0.858, 0.913, 0.8159, 0.8027, 0.8324, 0.8316, 0.8987)

My question is: What is the best statistic test and how to be sure that the thresholds are correct or should be corrected?

I was thinking of an chi square test or leave 1 out. But i dont know if this is the correct way. Any hints are appreciated.

share|improve this question
Given your test set and your criteria (which perhaps you could explain a bit better), what do you expect to get for a result? – BenBarnes Sep 11 '12 at 14:31
I voted to close/migrate this to CrossValidated – Ben Bolker Sep 11 '12 at 15:12
Agree with migration. My constructive suggestion would be for more thought about the costs of misclassification. You cannot have an optimality decision without consideration of costs. You also cannot score a decision without outcomes which are also missing in this question so far. So do some thinking and further edits as well. – DWin Sep 11 '12 at 16:28

closed as off topic by Ben Bolker, BenBarnes, joran, Justin, Kev Sep 11 '12 at 22:44

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

Browse other questions tagged or ask your own question.