ml-spectra-processing
    Preparing search index...

    Interface MatrixBoxPlot

    interface MatrixBoxPlot {
        max: Float64Array;
        median: Float64Array;
        min: Float64Array;
        q1: Float64Array;
        q3: Float64Array;
    }
    Index

    Properties

    Properties

    max: Float64Array

    Maximum value for each column (taken from the last row of the sorted matrix).

    median: Float64Array

    Median for each column.

    min: Float64Array

    Minimum value for each column (taken from the first row of the sorted matrix).

    q1: Float64Array

    First quartile for each column.

    q3: Float64Array

    Third quartile for each column.