Enumerates the different kinds of regression between two variables.
Namespace:
Extreme.Statistics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public enum SimpleRegressionKind
Public Enumeration SimpleRegressionKind
public enum class SimpleRegressionKind
type SimpleRegressionKind
| Member name | Value | Description |
---|
| Linear | 0 |
The dependent variable depends linearly on the independent variable: Y = a X + b. This is the default.
|
| Logarithmic | 1 |
The dependent variable depends linearly on the logarithm of the independent variable: Y = a log X + b |
| Inverse | 2 |
The dependent variable depends linearly on the inverse (reciprocal) of the independent variable: Y = a / x + b.
|
| Exponential | 3 |
The logarithm of the dependent variable depends linearly on the independent variable: Y = a * bX.
|
| Power | 4 |
The logarithm of the dependent variable depends linearly on the logarithm of the independent variable: Y = a * Xb.
|
Reference