Simple Regression Kind Enumeration
Enumerates the different kinds of regression between two variables.
Definition
Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public enum SimpleRegressionKindMembers
| 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. |