Skip to content

Commit 9d1da35

Browse files
committed
spelling corrections
1 parent 2b19e84 commit 9d1da35

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

machine_learning/linear_regression.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
22
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
88
Rating). We try to best fit a line through dataset and estimate the parameters.
99
"""
1010
import requests

0 commit comments

Comments
 (0)