|
LogisticRegressionAnalysis Constructor (Double, Double)
|
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
)
<ObsoleteAttribute("Please pass the inputs and outputs to the Learn method instead.")>
Public Sub New (
inputs As Double()(),
outputs As Double()
)
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
The input data for the analysis. - outputs
- Type: SystemDouble
The output data for the analysis.
See Also