Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grindelfp/linear-regression-study
Examples of linear regression.
https://github.com/grindelfp/linear-regression-study
ipynb-notebook linear-regression mlda
Last synced: 7 days ago
JSON representation
Examples of linear regression.
- Host: GitHub
- URL: https://github.com/grindelfp/linear-regression-study
- Owner: GrindelfP
- License: mit
- Created: 2024-03-11T12:06:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-03-23T18:16:37.000Z (8 months ago)
- Last Synced: 2024-11-13T08:41:54.886Z (7 days ago)
- Topics: ipynb-notebook, linear-regression, mlda
- Language: Jupyter Notebook
- Homepage:
- Size: 581 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.adoc
- License: LICENSE
Awesome Lists containing this project
README
= Linear regression study =
== Description ==
This task is divided in two parts.
- first is dedicated to studying the theory of Linear Regression based on https://habr.com/ru/articles/672540/:[this Habr article];
- second part is to be done oneself and be alike the code of the first part, but there is different dataset to be processed.== Given task ==
1. Study the article
2. Repeat all stages of work in your own notepad (including formulas (text cells) and graphs)
3. Accompany code with comments
4. Come up with your own data set alike the article
5. Implement the entire process described in the article with your own data set
6. Check your result coefficints using the sklearn library (LinearRegression)
7. Write conclusions about the work done