Uses of Class
org.apache.commons.statistics.descriptive.StatisticsConfiguration
Packages that use StatisticsConfiguration
Package
Description
Implementations of univariate statistics.
-
Uses of StatisticsConfiguration in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as StatisticsConfigurationModifier and TypeFieldDescriptionprivate StatisticsConfiguration
DoubleStatistics.Builder.config
Configuration options for computation of statistics.private StatisticsConfiguration
DoubleStatistics.config
Configuration options for computation of statistics.private StatisticsConfiguration
IntStatistics.Builder.config
Configuration options for computation of statistics.private StatisticsConfiguration
IntStatistics.config
Configuration options for computation of statistics.private StatisticsConfiguration
LongStatistics.Builder.config
Configuration options for computation of statistics.private StatisticsConfiguration
LongStatistics.config
Configuration options for computation of statistics.private static final StatisticsConfiguration
StatisticsConfiguration.DEFAULT
Default instance.Methods in org.apache.commons.statistics.descriptive that return StatisticsConfigurationModifier and TypeMethodDescriptionStatisticsConfiguration.withBiased
(boolean v) Return an instance with the configured biased option.static StatisticsConfiguration
StatisticsConfiguration.withDefaults()
Return an instance using the default options.Methods in org.apache.commons.statistics.descriptive with parameters of type StatisticsConfigurationModifier and TypeMethodDescriptionDoubleStatistics.Builder.setConfiguration
(StatisticsConfiguration v) Sets the statistics configuration options for computation of statistics.DoubleStatistics.setConfiguration
(StatisticsConfiguration v) Sets the statistics configuration.IntStatistics.Builder.setConfiguration
(StatisticsConfiguration v) Sets the statistics configuration options for computation of statistics.IntStatistics.setConfiguration
(StatisticsConfiguration v) Sets the statistics configuration.LongStatistics.Builder.setConfiguration
(StatisticsConfiguration v) Sets the statistics configuration options for computation of statistics.LongStatistics.setConfiguration
(StatisticsConfiguration v) Sets the statistics configuration.Constructors in org.apache.commons.statistics.descriptive with parameters of type StatisticsConfigurationModifierConstructorDescription(package private)
DoubleStatistics
(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.(package private)
IntStatistics
(long count, IntMin min, IntMax max, FirstMoment moment, IntSum sum, Product product, IntSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.(package private)
LongStatistics
(long count, LongMin min, LongMax max, FirstMoment moment, LongSum sum, Product product, LongSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config) Create an instance.