|
SurvivalOutcome Enumeration
|
Outcome status for survival methods. A sample can
enter the experiment, exit the experiment while still
alive or exit the experiment due to failure.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public enum SurvivalOutcome
Public Enumeration SurvivalOutcome
Members
| Member name | Value | Description |
---|
| Started | -1 |
Observation started. The observation was left censored before
the current time and has now entered the experiment. This is
equivalent to R's censoring code -1.
|
| Failed | 1 |
Failure happened. This is equivalent to R's censoring code 1.
|
| Censored | 0 |
The sample was right-censored. This is equivalent to R's censoring code 0.
|
See Also