Package org.drip.validation.quantile
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
- Module = Computational Core Module
- Library = Model Validation Analytics Library
- Project = Risk Factor and Hypothesis Validation, Evidence Processing, and Model Testing
- Package = Quantile Based Graphical Numerical Validators
- 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 Statisticdouble
orderStatisticY()
Retrieve the Y Order StatisticPlottingPosition
plottingPosition()
Retrieve the Vertex Plotting PositionMethods 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.ExceptionQQVertex Constructor- Parameters:
plottingPosition
- Vertex Plotting PositionorderStatisticX
- X Order StatisticorderStatisticY
- Y Order Statistic- Throws:
java.lang.Exception
- Thrown if the Inputs are Invalid
-
-
Method Details
-
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
-