Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
data As DataTable, _
dependentVariable As String, _
independentVariables As String() _
) |
| C# |
|---|
public LogisticRegressionModel (
DataTable data,
string dependentVariable,
string[] independentVariables
) |
| C++ |
|---|
public:
LogisticRegressionModel (
DataTable^ data,
String^ dependentVariable,
array<String^>^ independentVariables
) |
Parameters
- data (System.Data.DataTable)
- A DataTable containing the data for the regression.
- dependentVariable (System.String)
- A String containing the name of the column
in data that contains the data for the dependent variable.
- independentVariables ()
- A String array containing the names of the columns
in data that contain the data for the independent variables.