Skip to content

Commit ea0d068

Browse files
committed
Curve Fit: docs draft
1 parent 734e503 commit ea0d068

File tree

4 files changed

+37
-0
lines changed

4 files changed

+37
-0
lines changed

doc/data-mining-library/source/reference/regression.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,3 +148,12 @@ Gradient Boosted Trees
148148

149149
.. autoclass:: XGBRFRegressor
150150
:members:
151+
152+
153+
Curve Fit
154+
----------------------
155+
156+
.. automodule:: Orange.regression.curvefit
157+
158+
.. autoclass:: CurveFitLearner
159+
:members:

doc/visual-programming/source/index.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ Model
109109
widgets/model/logisticregression
110110
widgets/model/naivebayes
111111
widgets/model/adaboost
112+
widgets/model/curvefit
112113
widgets/model/neuralnetwork
113114
widgets/model/stochasticgradient
114115
widgets/model/stacking
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Curve Fit
2+
=========
3+
4+
Fit a function to data.
5+
6+
**Inputs**
7+
8+
- Data: input dataset
9+
- Preprocessor: preprocessing method(s)
10+
11+
**Outputs**
12+
13+
- Learner: curve fit learning algorithm
14+
- Model: trained model
15+
- Coefficients: fitted coefficients
16+
17+
The **Curve Fit** widget fits an arbitrary function to the input data. It only works for regression tasks.
18+
The widget uses [scipy.curve_fit](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.curve_fit.html) to find the optimal values of the parameters.

doc/widgets.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -631,6 +631,15 @@
631631
"boost"
632632
]
633633
},
634+
{
635+
"text": "Curve Fit",
636+
"doc": "visual-programming/source/widgets/model/curvefit.md",
637+
"icon": "../Orange/widgets/model/icons/CurveFit.svg",
638+
"background": "#FAC1D9",
639+
"keywords": [
640+
"function"
641+
]
642+
},
634643
{
635644
"text": "Neural Network",
636645
"doc": "visual-programming/source/widgets/model/neuralnetwork.md",

0 commit comments

Comments
 (0)