You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 6, 2023. It is now read-only.
A Python implementation of Jerome Friedman's Multivariate Adaptive Regression Splines algorithm,
5
-
in the style of scikit-learn. The py-earth package implements Multivariate Adaptive Regression Splines using Cython and provides an interface that is compatible with scikit-learn's Estimator, Predictor, Transformer, and Model interfaces. For more information about
4
+
A Python implementation of Jerome Friedman's Multivariate Adaptive Regression Splines algorithm,
5
+
in the style of scikit-learn. The py-earth package implements Multivariate Adaptive Regression Splines using Cython and provides an interface that is compatible with scikit-learn's Estimator, Predictor, Transformer, and Model interfaces. For more information about
6
6
Multivariate Adaptive Regression Splines, see the references below.
7
7
8
8
## Now With Missing Data Support!
@@ -22,9 +22,13 @@ If there are other features or improvements you'd like to see in py-earth, pleas
22
22
7. Iterative reweighting during fitting
23
23
24
24
## Installation
25
+
#### Install from [PyPI](https://pypi.org/):
26
+
```
27
+
pip install sklearn-contrib-py-earth
28
+
```
25
29
26
-
Make sure you have numpy and scikit-learn installed. Then do the following:
27
-
30
+
#### Manual install
31
+
Make sure you have numpy and scikit-learn installed. Then do the following:
0 commit comments