https://github.com/shahardekel/polynomial-vs.-linear-regression
How to perform polynomial regression with linear regression tools using python
https://github.com/shahardekel/polynomial-vs.-linear-regression
Last synced: 13 days ago
JSON representation
How to perform polynomial regression with linear regression tools using python
- Host: GitHub
- URL: https://github.com/shahardekel/polynomial-vs.-linear-regression
- Owner: shahardekel
- Created: 2020-08-12T10:48:50.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T11:17:38.000Z (almost 5 years ago)
- Last Synced: 2025-05-30T08:46:54.150Z (about 1 month ago)
- Language: Python
- Size: 166 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# polynomial-vs.-linear-regression
How to perform polynomial regression with linear regression tools using pythonGiven train data (𝑥1 = 0, 𝑦1 = −1.25), (𝑥2 = 0.5, 𝑦2 = −0.6), (𝑥3 = 2, 𝑦3 = −4.85)
and test data (𝑥4 = −1, 𝑦4 = −5.2), (𝑥5 = 1, 𝑦5 = −0.9), (𝑥6 = 3, 𝑦6 = −13).