RegressionMadeSimple

A minimalist machine learning backdoor to sklearn. Just import and go.

PyPI Version Monthly Downloads GitHub Stars License Python Version

🚀 Quickstart

import regressionmadesimple as rms

model = rms.Linear(df, colX='X', colY='y')
model.predict([[3], [10]])
model.summary()