Uses of Class
org.apache.commons.statistics.descriptive.StatisticsConfiguration
-
Packages that use StatisticsConfiguration Package Description org.apache.commons.statistics.descriptive Implementations of univariate statistics. -
-
Uses of StatisticsConfiguration in org.apache.commons.statistics.descriptive
Fields in org.apache.commons.statistics.descriptive declared as StatisticsConfiguration Modifier and Type Field Description private StatisticsConfigurationDoubleStatistics.Builder. configConfiguration options for computation of statistics.private StatisticsConfigurationDoubleStatistics. configConfiguration options for computation of statistics.private StatisticsConfigurationIntStatistics.Builder. configConfiguration options for computation of statistics.private StatisticsConfigurationIntStatistics. configConfiguration options for computation of statistics.private StatisticsConfigurationLongStatistics.Builder. configConfiguration options for computation of statistics.private StatisticsConfigurationLongStatistics. configConfiguration options for computation of statistics.private static StatisticsConfigurationStatisticsConfiguration. DEFAULTDefault instance.Methods in org.apache.commons.statistics.descriptive that return StatisticsConfiguration Modifier and Type Method Description StatisticsConfigurationStatisticsConfiguration. withBiased(boolean v)Return an instance with the configured biased option.static StatisticsConfigurationStatisticsConfiguration. withDefaults()Return an instance using the default options.Methods in org.apache.commons.statistics.descriptive with parameters of type StatisticsConfiguration Modifier and Type Method Description DoubleStatistics.BuilderDoubleStatistics.Builder. setConfiguration(StatisticsConfiguration v)Sets the statistics configuration options for computation of statistics.DoubleStatisticsDoubleStatistics. setConfiguration(StatisticsConfiguration v)Sets the statistics configuration.IntStatistics.BuilderIntStatistics.Builder. setConfiguration(StatisticsConfiguration v)Sets the statistics configuration options for computation of statistics.IntStatisticsIntStatistics. setConfiguration(StatisticsConfiguration v)Sets the statistics configuration.LongStatistics.BuilderLongStatistics.Builder. setConfiguration(StatisticsConfiguration v)Sets the statistics configuration options for computation of statistics.LongStatisticsLongStatistics. setConfiguration(StatisticsConfiguration v)Sets the statistics configuration.Constructors in org.apache.commons.statistics.descriptive with parameters of type StatisticsConfiguration Constructor Description DoubleStatistics(long count, Min min, Max max, FirstMoment moment, Sum sum, Product product, SumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)Create an instance.IntStatistics(long count, IntMin min, IntMax max, FirstMoment moment, IntSum sum, Product product, IntSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)Create an instance.LongStatistics(long count, LongMin min, LongMax max, FirstMoment moment, LongSum sum, Product product, LongSumOfSquares sumOfSquares, SumOfLogs sumOfLogs, StatisticsConfiguration config)Create an instance.
-