Class QQVertex

java.lang.Object
org.drip.validation.quantile.QQVertex

public class QQVertex
extends java.lang.Object
QQVertex holds the Elements in a single QQ Vertex - the Plotting Position and the Expected Order Statistics.

  • Filliben, J. J. (1975): The Probability Plot Correlation Coefficient Test for Normality Technometrics, American Society for Quality 17 (1) 111-117
  • Gibbons, J. D., and S. Chakraborti (2003): Non-parametric Statistical Inference 4th Edition CRC Press
  • Gnanadesikan, R. (1977): Methods for Statistical Analysis of Multivariate Observations Wiley
  • Thode, H. C. (2002): Testing for Normality Marcel Dekker New York
  • Wikipedia (2018): Q-Q Plot https://en.wikipedia.org/wiki/Q%E2%80%93Q_plot




Author:
Lakshmi Krishnamurthy
  • Constructor Summary

    Constructors
    Constructor Description
    QQVertex​(PlottingPosition plottingPosition, double orderStatisticX, double orderStatisticY)
    QQVertex Constructor
  • Method Summary

    Modifier and Type Method Description
    double orderStatisticX()
    Retrieve the X Order Statistic
    double orderStatisticY()
    Retrieve the Y Order Statistic
    PlottingPosition plottingPosition()
    Retrieve the Vertex Plotting Position

    Methods inherited from class java.lang.Object

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

    • QQVertex

      public QQVertex​(PlottingPosition plottingPosition, double orderStatisticX, double orderStatisticY) throws java.lang.Exception
      QQVertex Constructor
      Parameters:
      plottingPosition - Vertex Plotting Position
      orderStatisticX - X Order Statistic
      orderStatisticY - Y Order Statistic
      Throws:
      java.lang.Exception - Thrown if the Inputs are Invalid
  • Method Details

    • plottingPosition

      public PlottingPosition plottingPosition()
      Retrieve the Vertex Plotting Position
      Returns:
      The Vertex Plotting Position
    • orderStatisticX

      public double orderStatisticX()
      Retrieve the X Order Statistic
      Returns:
      The X Order Statistic
    • orderStatisticY

      public double orderStatisticY()
      Retrieve the Y Order Statistic
      Returns:
      The Y Order Statistic