Beispiel #1
0
 /// <summary>
 ///   Gets the Log-Likelihood Ratio between this model and another model.
 /// </summary>
 ///
 /// <param name="model">Another proportional hazards model.</param>
 ///
 /// <returns>The Likelihood-Ratio between the two models.</returns>
 ///
 public double GetLikelihoodRatio(ProportionalHazards model)
 {
     return(regression.GetLogLikelihoodRatio(inputData, timeData, censorData, model));
 }