Uses of Class
com.tdunning.math.stats.Centroid
-
-
Uses of Centroid in com.tdunning.math.stats
Fields in com.tdunning.math.stats declared as Centroid Modifier and Type Field Description private Centroid
GroupTree. leaf
Methods in com.tdunning.math.stats that return Centroid Modifier and Type Method Description Centroid
GroupTree. ceiling(Centroid base)
protected Centroid
AbstractTDigest. createCentroid(double mean, int id)
static Centroid
Centroid. createWeighted(double x, int w, java.lang.Iterable<? extends java.lang.Double> data)
Centroid
GroupTree. first()
Centroid
GroupTree. floor(Centroid base)
Centroid
GroupTree. last()
Methods in com.tdunning.math.stats that return types with arguments of type Centroid Modifier and Type Method Description java.lang.Iterable<? extends Centroid>
ArrayDigest. centroids()
java.lang.Iterable<? extends Centroid>
AVLTreeDigest. centroids()
abstract java.lang.Iterable<? extends Centroid>
TDigest. centroids()
An iterable that lets you go through the centroids in ascending order by mean.java.lang.Iterable<? extends Centroid>
TreeDigest. centroids()
java.util.Iterator<Centroid>
AVLGroupTree. iterator()
private java.util.Iterator<Centroid>
AVLGroupTree. iterator(int startNode)
java.util.Iterator<Centroid>
GroupTree. iterator()
Iteratres through all groups in the tree.private java.util.Iterator<Centroid>
GroupTree. iterator(Centroid start)
Iterates through all of the Groups in this tree in ascending order of meansjava.lang.Iterable<Centroid>
GroupTree. tailSet(Centroid start)
Methods in com.tdunning.math.stats with parameters of type Centroid Modifier and Type Method Description (package private) abstract void
AbstractTDigest. add(double x, int w, Centroid base)
(package private) void
ArrayDigest. add(double x, int w, Centroid base)
void
AVLGroupTree. add(Centroid centroid)
(package private) void
AVLTreeDigest. add(double x, int w, Centroid base)
void
GroupTree. add(Centroid centroid)
void
TreeDigest. add(double x, int w, Centroid base)
Centroid
GroupTree. ceiling(Centroid base)
int
Centroid. compareTo(Centroid o)
Centroid
GroupTree. floor(Centroid base)
int
GroupTree. headCount(Centroid base)
long
GroupTree. headSum(Centroid base)
private java.util.Iterator<Centroid>
GroupTree. iterator(Centroid start)
Iterates through all of the Groups in this tree in ascending order of meansvoid
GroupTree. move(double x, int count, Centroid v, java.lang.Iterable<? extends java.lang.Double> data)
Modify an existing value in the tree subject to the constraint that the change will not alter the ordering of the tree.void
GroupTree. remove(Centroid base)
java.lang.Iterable<Centroid>
GroupTree. tailSet(Centroid start)
Constructors in com.tdunning.math.stats with parameters of type Centroid Constructor Description GroupTree(Centroid leaf)
-