Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
data As DataTable, _
dependentColumnName As String, _
independentColumnName As String, _
degree As Integer _
) |
| C# |
|---|
public PolynomialRegressionModel (
DataTable data,
string dependentColumnName,
string independentColumnName,
int degree
) |
| C++ |
|---|
public:
PolynomialRegressionModel (
DataTable^ data,
String^ dependentColumnName,
String^ independentColumnName,
int degree
) |
Parameters
- data (System.Data.DataTable)
- A DataTable containing the data for the regression.
- dependentColumnName (System.String)
- A String that specifies the name of the column
in data that contains the data for the dependent variable.
- independentColumnName (System.String)
- A String that specifies the name of the columns
in data that contain the data for the independent variables.
- degree (System.Int32)
- The degree of the regression polynomial.