Class NumericalColumnAnalysis.Builder<T extends NumericalColumnAnalysis.Builder<T>>

    • Field Detail

      • mean

        protected double mean
      • sampleStdev

        protected double sampleStdev
      • sampleVariance

        protected double sampleVariance
      • countZero

        protected long countZero
      • countNegative

        protected long countNegative
      • countPositive

        protected long countPositive
      • countMinValue

        protected long countMinValue
      • countMaxValue

        protected long countMaxValue
      • countTotal

        protected long countTotal
      • histogramBuckets

        protected double[] histogramBuckets
      • histogramBucketCounts

        protected long[] histogramBucketCounts
      • digest

        protected com.tdunning.math.stats.TDigest digest
    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • mean

        public T mean​(double mean)
      • sampleStdev

        public T sampleStdev​(double sampleStdev)
      • sampleVariance

        public T sampleVariance​(double sampleVariance)
      • countZero

        public T countZero​(long countZero)
      • countNegative

        public T countNegative​(long countNegative)
      • countPositive

        public T countPositive​(long countPositive)
      • countMinValue

        public T countMinValue​(long countMinValue)
      • countMaxValue

        public T countMaxValue​(long countMaxValue)
      • countTotal

        public T countTotal​(long countTotal)
      • histogramBuckets

        public T histogramBuckets​(double[] histogramBuckets)
      • histogramBucketCounts

        public T histogramBucketCounts​(long[] histogramBucketCounts)
      • digest

        public T digest​(com.tdunning.math.stats.TDigest digest)