An extension for Polars providing Ordinary Least Squares (OLS) regression support. Version 0.3.5 is current. Release cadence is irregular.
pip install polars-olsNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Fit OLS regression using polars-pipe syntax.
Use polars_ols.ols for linear OLS only. For other models, consider statsmodel or sklearn.
Access results via DataFrame column names, e.g., result['coef'].
Use pipe syntax: df.pipe(polars_ols.ols, 'y', ['x1', 'x2'])
No resource links recorded.