Merged the branch.
This commit is contained in:
parent
6922a8e6cb
commit
ccf7e878f9
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ class LinearRegression:
|
||||||
self.add_bias = add_bias # bias to prepend a column of ones (the intercept term)
|
self.add_bias = add_bias # bias to prepend a column of ones (the intercept term)
|
||||||
self.w = None # weight/coefficient
|
self.w = None # weight/coefficient
|
||||||
self.mean = None # used for standardisation
|
self.mean = None # used for standardisation
|
||||||
self.std = None # standard deviation
|
self.std = None # standard deviationg
|
||||||
|
|
||||||
|
|
||||||
def prepare(self, x: pd.DataFrame) -> pd.DataFrame:
|
def prepare(self, x: pd.DataFrame) -> pd.DataFrame:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue