keelerjr12
keelerjr12

Reputation: 1913

Boolean regression or similar algorithm

I'm looking to take in a set of values and then return a boolean value based on that set. Similar to linear regression but only returning a boolean value. Is a boolean regression model what I'm looking for or something completely different? I performed a few searches on it but didn't come up with much.

Upvotes: 1

Views: 2974

Answers (1)

Sicco
Sicco

Reputation: 6281

What you want is classification, which given the input returns a value from a fixed set of values (be it 100 values or just 2 values as is the case with Boolean classification). Regression is used if you want to predict a real-valued output.

Upvotes: 3

Related Questions