File tree 1 file changed +5
-5
lines changed 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
2
Linear regression is the most basic type of regression commonly used for
3
- predictive analysis. The idea is pretty simple, we have a dataset and we have
4
- a feature's associated with it. The Features should be choose very cautiously
5
- as they determine, how much our model will be able to make future predictions.
6
- We try to set these Feature weights, over many iterations, so that they best
7
- fits our dataset. In this particular code, i had used a CSGO dataset (ADR vs
3
+ predictive analysis. The idea is pretty simple: we have a dataset and we have
4
+ features associated with it. Features should be chosen very cautiously
5
+ as they determine how much our model will be able to make future predictions.
6
+ We try to set these features weights, over many iterations, so that they best
7
+ fit our dataset. In this particular code, I had used a CSGO dataset (ADR vs
8
8
Rating). We try to best fit a line through dataset and estimate the parameters.
9
9
"""
10
10
import requests
You can’t perform that action at this time.
0 commit comments