Class DataFrameHelper.ColumnStatistics

  • Enclosing class:
    DataFrameHelper

    public static class DataFrameHelper.ColumnStatistics
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      ColumnStatistics​(java.lang.Number min, java.lang.Number max, double sum, long count)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      long getCount()  
      java.lang.Number getMax()  
      double getMean()  
      java.lang.Number getMin()  
      double getSum()  
      java.lang.String toString()  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Constructor Detail

      • ColumnStatistics

        public ColumnStatistics​(java.lang.Number min,
                                java.lang.Number max,
                                double sum,
                                long count)
    • Method Detail

      • getMin

        public java.lang.Number getMin()
      • getMax

        public java.lang.Number getMax()
      • getSum

        public double getSum()
      • getCount

        public long getCount()
      • getMean

        public double getMean()
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Object