E1 Flashcards

1
Q

Regression

A

Attempts to estimate or predict the numerical value of some variable for an individual (e.g. price of Microsoft stock).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Classification

A

Attempts to predict which of a (small) set of classes an individual belong to.

Usually classes are mutually exclusive (e.g. customers will churn or will not churn).

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Regression Mathematical Formula / Rule-based Formula

A

Mathematical Formula

  • Linear Regression
  • Logistic Regression

Rule-based Formula
- Regression Trees

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Classification Mathematical Formula / Rule-based Formula

A

Mathematical Formula

  • Logistic Regression
  • Support Vector Machines

Rule-based Formula
- Classification Trees

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Stages of a predictive modeling process

A
  1. Define target
  2. Collect data
  3. Build a model
  4. Predict outcomes
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q
  1. Define target
A

It has to be a quantifiable target.

a. E.g. what will be the stock price of Microsoft tomorrow? 200
b. E.g. will this client default on her loan? -> not specific enough! You want a time frame such as ‘first five years’ (though it depends on what you want to know)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q
  1. Collect data
A

We need data for the same or a related phenomenon

a. E.g. which customers defaulted last quarter? Think about whether or not this is the same phenomenon. Look at stuff that has happened in the past.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q
  1. Build a model
A

The model will look like a set of rules or a mathematical formula that allow establishing a prediction

a. E.g. rule: if (income <50k) then default, else no default.
b. E.g. mathematical formula: MSFTt+1 = 0.9 – APPLt -> predictive stock market value of Microsoft will be 90% of Apple’s.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q
  1. Predict outcomes
A

The model can be applied to any customer. It gives us a prediction of the target variable.

a. E.g. the customer will default because its income is lower than 50k.
b. E.g. MSFT = $212.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly