Uses of Class
com.google.common.math.Stats
Packages that use Stats
-
Uses of Stats in com.google.common.math
Fields in com.google.common.math declared as StatsModifier and TypeFieldDescriptionprivate final StatsPairedStats.xStatsprivate final StatsPairedStats.yStatsMethods in com.google.common.math that return StatsModifier and TypeMethodDescriptionstatic StatsStats.fromByteArray(byte[] byteArray) Creates a Stats instance from the given byte representation which was obtained bytoByteArray().static StatsStats.of(double... values) Returns statistics over a dataset containing the given values.static StatsStats.of(int... values) Returns statistics over a dataset containing the given values.static StatsStats.of(long... values) Returns statistics over a dataset containing the given values.static StatsReturns statistics over a dataset containing the given values.static StatsReturns statistics over a dataset containing the given values.static StatsStats.of(DoubleStream values) Returns statistics over a dataset containing the given values.static StatsReturns statistics over a dataset containing the given values.static StatsStats.of(LongStream values) Returns statistics over a dataset containing the given values.(package private) static StatsStats.readFrom(ByteBuffer buffer) Creates a Stats instance from the byte representation read from the givenByteBuffer.StatsAccumulator.snapshot()Returns an immutable snapshot of the current statistics.PairedStats.xStats()Returns the statistics on thexvalues alone.PairedStatsAccumulator.xStats()Returns an immutable snapshot of the statistics on thexvalues alone.PairedStats.yStats()Returns the statistics on theyvalues alone.PairedStatsAccumulator.yStats()Returns an immutable snapshot of the statistics on theyvalues alone.Methods in com.google.common.math that return types with arguments of type StatsModifier and TypeMethodDescriptionstatic Collector<Number,StatsAccumulator, Stats> Stats.toStats()Methods in com.google.common.math with parameters of type StatsModifier and TypeMethodDescriptionvoidAdds the given statistics to the dataset, as if the individual values used to compute the statistics had been added directly.Constructors in com.google.common.math with parameters of type StatsModifierConstructorDescription(package private)PairedStats(Stats xStats, Stats yStats, double sumOfProductsOfDeltas) Internal constructor.