Class HypothesisOutcomeSuite

java.lang.Object
org.drip.validation.distance.HypothesisOutcomeSuite

public class HypothesisOutcomeSuite
extends java.lang.Object
HypothesisOutcomeSuite holds the Map of Hypotheses Outcomes to be subjected to Discriminatory Power Analysis.

  • Anfuso, F., D. Karyampas, and A. Nawroth (2017): A Sound Basel III Compliant Framework for Back-testing Credit Exposure Models https://papers.ssrn.com/sol3/papers.cfm?abstract_id=2264620 eSSRN
  • Diebold, F. X., T. A. Gunther, and A. S. Tay (1998): Evaluating Density Forecasts with Applications to Financial Risk Management, International Economic Review 39 (4) 863-883
  • Kenyon, C., and R. Stamm (2012): Discounting, LIBOR, CVA, and Funding: Interest Rate and Credit Pricing Palgrave Macmillan
  • Wikipedia (2018): Probability Integral Transform https://en.wikipedia.org/wiki/Probability_integral_transform
  • Wikipedia (2019): p-value https://en.wikipedia.org/wiki/P-value




Author:
Lakshmi Krishnamurthy
  • Constructor Summary

    Constructors
    Constructor Description
    HypothesisOutcomeSuite()
    Empty HypothesisOutcomeSuite Constructor
  • Method Summary

    Modifier and Type Method Description
    boolean add​(java.lang.String hypothesisID, GapTestOutcome gapTestOutcome)
    Add a Hypothesis - Outcome Instance
    java.util.TreeMap<java.lang.Double,​java.lang.String> distanceHypothesisMap()
    Retrieve the Distance-Hypothesis Map
    HypothesisOutcome leadingHypothesis()
    Retrieve the Leading/Best Fit Hypothesis and its Test Outcome
    java.util.Map<java.lang.String,​GapTestOutcome> outcomeMap()
    Retrieve the Outcome Map

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • HypothesisOutcomeSuite

      public HypothesisOutcomeSuite()
      Empty HypothesisOutcomeSuite Constructor
  • Method Details

    • outcomeMap

      public java.util.Map<java.lang.String,​GapTestOutcome> outcomeMap()
      Retrieve the Outcome Map
      Returns:
      The Outcome Map
    • distanceHypothesisMap

      public java.util.TreeMap<java.lang.Double,​java.lang.String> distanceHypothesisMap()
      Retrieve the Distance-Hypothesis Map
      Returns:
      The Distance-Hypothesis Map
    • add

      public boolean add​(java.lang.String hypothesisID, GapTestOutcome gapTestOutcome)
      Add a Hypothesis - Outcome Instance
      Parameters:
      hypothesisID - Hypothesis ID
      gapTestOutcome - Gap Test Outcome
      Returns:
      TRUE - The Hypothesis - Outcome successfully added
    • leadingHypothesis

      public HypothesisOutcome leadingHypothesis()
      Retrieve the Leading/Best Fit Hypothesis and its Test Outcome
      Returns:
      The Leading/Best Fit Hypothesis and its Test Outcome