summaryrefslogtreecommitdiff
path: root/SI/Resource/Data Science/Machine Learning/Contents/Linear Regression.md
blob: fdd175c9fd4f5439a6c6b9c053c25e131332b794 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
id: 2023-12-17
aliases: December 17, 2023
tags:
- link-note
- Data-Science
- Machine-Learning
- Linear-Regression
---

# Linear Regression

## Simple Linear Regression

- A model has one feature of data
- $y = w_0 + w_1*x$

## Multiple Linear Regression

- A model has several features of data
- $y = w_0 + w_1*x + \dots + w_D*x_D$ 

## Polynomial Regression

- A model has increased degrees of features
- $y = w_0 + w_1*x + w_2*x^2 + w_m*x^m$