summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--regression/least_square_fit.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/regression/least_square_fit.py b/regression/least_square_fit.py
index 71900b9..94c60d5 100644
--- a/regression/least_square_fit.py
+++ b/regression/least_square_fit.py
@@ -12,3 +12,5 @@ x_aug = np.hstack([np.ones_like(x), x])
beta = inv(x_aug.transpose().dot(x_aug)).dot(x_aug.transpose()).dot(y)
print(beta)
+
+