This is a super simple implementation of Regression (Linear and Quadratic), built from scratch using numpy.
Run:
pip install simple-regression-grqphicalQuickstart:
from simple_regression import LinearRegression
data = [(0,0), (1, 3), (2, 5), (-3, 7)]
lr = LinearRegression(data)
y = lr.predict(7)This project is licensed under the MIT License