static Stats | 
Stats.fromByteArray(byte[] byteArray) | 
Creates a Stats instance from the given byte representation which was obtained by  toByteArray().  
 | 
static Stats | 
Stats.of(double... values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(int... values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(long... values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(Iterable<? extends Number> values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(Iterator<? extends Number> values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(DoubleStream values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(IntStream values) | 
 Returns statistics over a dataset containing the given values. 
 | 
static Stats | 
Stats.of(LongStream values) | 
 Returns statistics over a dataset containing the given values. 
 | 
Stats | 
StatsAccumulator.snapshot() | 
 Returns an immutable snapshot of the current statistics. 
 | 
Stats | 
PairedStats.xStats() | 
 Returns the statistics on the x values alone. 
 | 
Stats | 
PairedStatsAccumulator.xStats() | 
 Returns an immutable snapshot of the statistics on the x values alone. 
 | 
Stats | 
PairedStats.yStats() | 
 Returns the statistics on the y values alone. 
 | 
Stats | 
PairedStatsAccumulator.yStats() | 
 Returns an immutable snapshot of the statistics on the y values alone. 
 |