Skip to main content

A scikit-learn-compatible implementation of Piecewise Linear Regression

Project description

pwlreg

Tests codecov

A scikit-learn-compatible implementation of Piecewise Linear Regression

Installation

pip install pwlreg

Documentation

See the documentation here.

import numpy as np
import matplotlib.pyplot as plt

import pwlreg as pw


x = np.array([1., 2., 3., 4., 5., 6., 7., 8., 9., 10.])
y = np.array([1., 1.5, 0.5, 1., 1.25, 2.75, 4, 5.25, 6., 8.5])

m = pw.AutoPiecewiseRegression(n_segments=2, degree=[0, 1])
m.fit(x, y)

xx = np.linspace(1, 10, 100)
plt.plot(x, y, "o")
plt.plot(xx, m.predict(xx), "-")
plt.show()

pwlreg toy example

m.coef_         # [ 1.00  -5.50  1.35 ]
m.breakpoints_  # [ 1.000000  4.814815  10.000000 ]

$$ x = \begin{cases} 1, & 1 \leq x < 4.815 \ -5.5 + 1.35x, & 4.815 \leq x < 10 \end{cases} $$

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pwlreg-1.0.1.tar.gz (7.8 kB view hashes)

Uploaded Source

Built Distribution

pwlreg-1.0.1-py3-none-any.whl (7.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page