|
ProportionalHazardsAnalysisLearn Method (TupleDouble, Double, SurvivalOutcome, Double)
|
Learns a model that can map the given inputs to the given outputs.
Namespace:
Accord.Statistics.Analysis
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public ProportionalHazards Learn(
Tuple<double[], double>[] x,
SurvivalOutcome[] y,
double[] weights = null
)
Public Function Learn (
x As Tuple(Of Double(), Double)(),
y As SurvivalOutcome(),
Optional weights As Double() = Nothing
) As ProportionalHazards
Request Example
View SourceParameters
- x
- Type: SystemTupleDouble, Double
The model inputs. - y
- Type: Accord.Statistics.Distributions.UnivariateSurvivalOutcome
The desired outputs associated with each x. - weights (Optional)
- Type: SystemDouble
The weight of importance for each input-output pair (if supported by the learning algorithm).
Return Value
Type:
ProportionalHazards
A model that has learned how to produce
y given
x.
See Also