SAVVI Flashcards

1
Q

What are prescriptive analytics?

A

Analytics that suggests a course of action or strategy based on data, including possible situations or scenarios, available resources, past performance, and current performance.

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

What are descriptive analytics?

A

Analytics that assess decisions and outcomes after the fact.

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

How is least absolute deviation (l1 regression) a linear programming problem?

A

Instead of minimizing SUM( | y - a_0 - a_1 x_1 … | ), we create a dummy variable and formulate the + and - sides of the absolute value as constraints: sum(u_i) subject to u_i >= sum_i(y_i - a_0 - a1x1 - …) and u_i >= sum_i(y_i - a_0 - a1x1- …).

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

What is leverage in a linear model?

A

A measure of the “pull” of individual points on the regression line. Normally given by the corresponding diagonal entry of the hat matrix.

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

Explain cost complexity pruning.

A

CCP or weakest link pruning calculates a tree score using the sum of squared residuals and an alpha value (tree complexity penalty per leaf). The subtree with the lowest score is accepted.

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