|
LogisticRegressionAnalysis Constructor (Double, Double, Double, String, String)
|
Note: This API is now obsolete.
Constructs a Logistic Regression Analysis.
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please pass the inputs and outputs to the Learn method instead.")]
public LogisticRegressionAnalysis(
double[][] inputs,
double[] outputs,
double[] weights,
string[] inputNames,
string outputName
)
<ObsoleteAttribute("Please pass the inputs and outputs to the Learn method instead.")>
Public Sub New (
inputs As Double()(),
outputs As Double(),
weights As Double(),
inputNames As String(),
outputName As String
)
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
The input data for the analysis. - outputs
- Type: SystemDouble
The output, binary data for the analysis. - weights
- Type: SystemDouble
The weights associated with each input vector. - inputNames
- Type: SystemString
The names of the input variables. - outputName
- Type: SystemString
The name of the output variable.
See Also