DATS2103 Quiz 5

0.0(0)
studied byStudied by 0 people
full-widthCall with Kai
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/21

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

22 Terms

1
New cards

Why do we move beyond linearity?

Because real-world relationships are often nonlinear, and linear models can produce high error

2
New cards

What are basis funcitons?

Transformations of predictors (like polynomials, steps, splines) to make linear models more flexible

3
New cards

What does polynomial regression do?

Adds curved terms (e.g., X2,X3) to capture nonlinear relationships

4
New cards

Main wekness of polynomial regression?

Can overfit and behave poorly at the boundaries

5
New cards

What is a step funciton (piecewise-constant regression)?

Splits a variable into bins (like age groups) and fits constant values in each bin.

6
New cards

Weakness of step functions?

Discontinuous at breakpoints and poor at boundaries

7
New cards

What are regressin splines?

Piecewise polynomials joined at knots for smooth curves.

8
New cards

What are knots?

Points where the funciton changes behavior but remains  smooth

9
New cards

How are natural splines different from regression splines?

they force the funciton to be linear at the boundaries to prevent extreme swings

10
New cards

How do smoothing splines control flexibility?

Use a penalty/tuning paramter (λ) to balance smoothness vs flexibility.

11
New cards

What happens with small vs large (λ)?

Small → very wiggly curve; large → smoother, straighter curve

12
New cards

What is local regression (LOESS/LOWESS)?

Fits regression in small neighborhoods of the data

13
New cards

What controls smoothness in local regression?

The span (proportion of nearby points used).

  • Small span → very flexible/wiggly

  • Large span → smoother/less flexible

14
New cards

What do GAMs allow?

Nonlinear functions for each predictor, while keeping additiveity

15
New cards

Why are GAMs useful?

They handle multiple predictor flexibly and allow easy interpretaiton of each varibale’s effect

16
New cards

Which method is simplest but risky with edges?

Polynomial regression

17
New cards

Which method is good for natural categories but discontinuous?

Step functions

18
New cards

Which mehtod balances flexibility and smoothness with knots?

Regression splines

19
New cards

Which method uses a penalty to control smoothness?

Smoothing splines

20
New cards

Which method is like kNN but uses regresion?

Local regression

21
New cards

Which method combines everything for multiple predictors?

Generalized Addtive Models (GAMs)

22
New cards

Which mehtod avoids wild swings at the boundaries?

Natural splines