Uses of Class
org.apache.commons.math3.stat.descriptive.rank.PSquarePercentile.Marker
-
Packages that use PSquarePercentile.Marker Package Description org.apache.commons.math3.stat.descriptive.rank Summary statistics based on ranks. -
-
Uses of PSquarePercentile.Marker in org.apache.commons.math3.stat.descriptive.rank
Fields in org.apache.commons.math3.stat.descriptive.rank declared as PSquarePercentile.Marker Modifier and Type Field Description private PSquarePercentile.Marker[]
PSquarePercentile.Markers. markerArray
Array of 5+1 Markers (The first marker is dummy just so we can match the rest of indexes [1-5] indicated in the original works which follows unit based index)private PSquarePercentile.Marker
PSquarePercentile.Marker. next
Next and previous markers for easy linked navigation in loops.private PSquarePercentile.Marker
PSquarePercentile.Marker. previous
The previous marker linksMethods in org.apache.commons.math3.stat.descriptive.rank that return PSquarePercentile.Marker Modifier and Type Method Description private static PSquarePercentile.Marker[]
PSquarePercentile.Markers. createMarkerArray(java.util.List<java.lang.Double> initialFive, double p)
Creates a marker array using initial five elements and a quantileprivate PSquarePercentile.Marker
PSquarePercentile.Marker. index(int indexOfMarker)
Sets the index of the marker.private PSquarePercentile.Marker
PSquarePercentile.Marker. next(PSquarePercentile.Marker nextMarker)
Sets the next marker.private PSquarePercentile.Marker
PSquarePercentile.Marker. previous(PSquarePercentile.Marker previousMarker)
Sets the previous marker.Methods in org.apache.commons.math3.stat.descriptive.rank with parameters of type PSquarePercentile.Marker Modifier and Type Method Description private PSquarePercentile.Marker
PSquarePercentile.Marker. next(PSquarePercentile.Marker nextMarker)
Sets the next marker.private PSquarePercentile.Marker
PSquarePercentile.Marker. previous(PSquarePercentile.Marker previousMarker)
Sets the previous marker.Constructors in org.apache.commons.math3.stat.descriptive.rank with parameters of type PSquarePercentile.Marker Constructor Description Markers(PSquarePercentile.Marker[] theMarkerArray)
Constructor
-