-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
25 changed files
with
2,970 additions
and
1,336 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,36 @@ | ||
Installation | ||
============ | ||
|
||
You can install with pip. | ||
Python Package Index (PyPI) | ||
--------------------------- | ||
|
||
You can now install with pip. | ||
|
||
:: | ||
|
||
python -m pip install pwlf | ||
|
||
Conda | ||
----- | ||
|
||
If you have conda, you can also install from conda-forge. | ||
|
||
:: | ||
|
||
[sudo] pip install pwlf | ||
conda install -c conda-forge pwlf | ||
|
||
From source | ||
----------- | ||
|
||
Or clone the repo | ||
|
||
:: | ||
|
||
git clone https://github.com/cjekel/piecewise_linear_fit_py.git | ||
git clone https://github.com/cjekel/piecewise_linear_fit_py.git | ||
|
||
then install with pip | ||
|
||
:: | ||
|
||
[sudo] pip install ./piecewise_linear_fit_py | ||
|
||
python -m pip install ./piecewise_linear_fit_py | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
pwlf.PiecewiseLinFit | ||
==================== | ||
|
||
.. currentmodule:: pwlf | ||
|
||
.. autoclass:: PiecewiseLinFit | ||
|
||
|
||
.. automethod:: __init__ | ||
|
||
|
||
.. rubric:: Methods | ||
|
||
.. autosummary:: | ||
|
||
~PiecewiseLinFit.__init__ | ||
~PiecewiseLinFit.assemble_regression_matrix | ||
~PiecewiseLinFit.calc_slopes | ||
~PiecewiseLinFit.conlstsq | ||
~PiecewiseLinFit.fit | ||
~PiecewiseLinFit.fit_force_points_opt | ||
~PiecewiseLinFit.fit_guess | ||
~PiecewiseLinFit.fit_with_breaks | ||
~PiecewiseLinFit.fit_with_breaks_force_points | ||
~PiecewiseLinFit.fit_with_breaks_opt | ||
~PiecewiseLinFit.fitfast | ||
~PiecewiseLinFit.lstsq | ||
~PiecewiseLinFit.p_values | ||
~PiecewiseLinFit.predict | ||
~PiecewiseLinFit.prediction_variance | ||
~PiecewiseLinFit.r_squared | ||
~PiecewiseLinFit.standard_errors | ||
~PiecewiseLinFit.use_custom_opt | ||
|
||
|
||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.