Very interesting seeing people in the comments debate what is a very basic thing taught in any stats/econometrics class. The idea behind binary regression ( Y is 0 or 1) is that you use a latent variable Y* = beta X + epsilon. X is the matrix of indenpent variables, beta is the vector of coefficients and epsilon is an error term that sums the rest of what X can't explain. Y thus becomes 1 if Y* >0 and 0 otherwise. Se…
I've always found it a little simplistic that the default cut-off, in most statistical software, for whether something should be 0 or 1, is 0.5. (i.e. > 0.5 equals 1, and This seems to be a "rarely-questioned assumption". Is there a reason why this is considered reasonable? And is there a name for the cut-off (i.e., if I were to want to change the cut-off, what keyword should I search for inside the software's manual…
In the software, you can get classification models to output class probabilities instead of class labels. You can then use whatever threshold you like for to transform those probabilities to labels.
You may see it refered to as "discrimination threshold". Varying that threshold is how ROC curves are constructed.