|
ProportionalHazardsAnalysis Constructor (Double, Double, Int32)
|
Note: This API is now obsolete.
Constructs a new Cox's Proportional Hazards Analysis.
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax [ObsoleteAttribute("Please do not pass data to this constructor, and use the Learn method instead.")]
public ProportionalHazardsAnalysis(
double[][] inputs,
double[] times,
int[] censor
)
<ObsoleteAttribute("Please do not pass data to this constructor, and use the Learn method instead.")>
Public Sub New (
inputs As Double()(),
times As Double(),
censor As Integer()
)
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
The input data for the analysis. - times
- Type: SystemDouble
The output data for the analysis. - censor
- Type: SystemInt32
The right-censoring indicative values.
See Also