|
ProportionalHazardsAnalysis Constructor (Double, Double, SurvivalOutcome)
|
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,
SurvivalOutcome[] 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 SurvivalOutcome()
)
Request Example
View SourceParameters
- inputs
- Type: SystemDouble
The input data for the analysis. - times
- Type: SystemDouble
The output data for the analysis. - censor
- Type: Accord.Statistics.Distributions.UnivariateSurvivalOutcome
The right-censoring indicative values.
See Also