Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 16 hours 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 (about 4 years ago)
- Default Branch: master
- Last Pushed: 2020-08-12T11:17:38.000Z (about 4 years ago)
- Last Synced: 2023-09-04T14:50:31.841Z (about 1 year 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).