Interface CategoryHistogram

    • Method Detail

      • fill

        default int fill​(java.lang.String name)
        Deprecated.
        Increment bin with name with by 1. if x is less than the low-edge of the first bin, the Underflow bin is incremented if x is equal to or greater than the upper edge of last bin, the Overflow bin is incremented
        Parameters:
        name - name to be added
        Returns:
        corresponding bin number which has its content incremented by w
      • fill

        int fill​(java.lang.String name,
                 double w)
        Deprecated.
        Increment bin with name with a weight w. if x is less than the low-edge of the first bin, the Underflow bin is incremented if x is equal to or greater than the upper edge of last bin, the Overflow bin is incremented
        Parameters:
        name - name to be added
        w - weight for given name
        Returns:
        corresponding bin number which has its content incremented by w