Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to predict a True/False event

I have some measurements on a system (x, y, z, ..) over many trials. The system produces a true or false output. I would like to take my data and produce a predictor function of x,y, z, that would best predict the system outcome.

I am used to methods for approximating smooth outcomes like approximating a graph, but don't know the terms to search for when the outcome is true/false.

like image 507
Paddy3118 Avatar asked Dec 12 '25 00:12

Paddy3118


1 Answers

Search for multivariate classification.

In your case you just have two classes (true and false).

The Wikipedia article on statistical classification has a list of commonly used algorithms.

You can also search for multivariate regression which attempts to model a real value as function of several values where in your case the possible values are a discrete set (0,1). One would have to take a decision on whether the predicted outcome is True or False based on the regression function's output (e.g. assume True if the output is > 0.5 and False if it's <= 0.5).

Note that there is also https://stats.stackexchange.com/ where you could get more detailed answers related to the analysis of data.

like image 75
Andre Holzner Avatar answered Dec 14 '25 14:12

Andre Holzner



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!