ml-spectra-processing
    Preparing search index...

    Interface XHistogramOptions

    interface XHistogramOptions {
        absolute?: boolean;
        centerX?: boolean;
        histogram?: DataXY<NumberArray>;
        logBaseX?: number;
        logBaseY?: number;
        max?: number;
        min?: number;
        nbSlots?: number;
    }
    Index

    Properties

    absolute?: boolean

    Take the absolute value of each input element before binning.

    false
    
    centerX?: boolean

    Center each slot's x value at the mid-point of the bin rather than at the left edge.

    true
    
    histogram?: DataXY<NumberArray>

    Previously existing histogram to continue to fill

    {x:[],y:[]}
    
    logBaseX?: number

    Apply log base transformation to input x values before binning.

    undefined
    
    logBaseY?: number

    Apply log base transformation to the resulting histogram y counts.

    undefined
    
    max?: number

    Maximal value to calculate used to calculate slot size

    maxValue
    
    min?: number

    Minimum value to calculate used to calculate slot size

    minValue
    
    nbSlots?: number

    Number of slots

    256