DiscreteFirstLevelDrillDownInsight: BaseDrillDownInsight & {
    costPerUnit?: number;
    costPerUnitGroupByValue?:
        | number
        | number
        | string
        | boolean
        | Date;
    meanCostPerUnit?: number;
    meanPercentDefects?: number;
    percentDefects?: number;
    percentDefectsGroupByValue?:
        | number
        | number
        | string
        | boolean
        | Date;
    type: "discrete";
}

Type declaration

  • OptionalcostPerUnit?: number

    If set, then the cost was significantly different from the mean. This is the value of the bar with the largest difference from the mean.

  • OptionalcostPerUnitGroupByValue?:
        | number
        | number
        | string
        | boolean
        | Date

    Internal ID of the part, process, etc.; or the string traceability value

  • OptionalmeanCostPerUnit?: number

    The average cost per sample for the entire data set

  • OptionalmeanPercentDefects?: number

    The average percentage of defects for the entire data set

  • OptionalpercentDefects?: number

    If set, then the percent defects was significantly different from the mean. This is the value of the bar with the largest difference from the mean.

  • OptionalpercentDefectsGroupByValue?:
        | number
        | number
        | string
        | boolean
        | Date

    Internal ID of the part, process, etc.; or the string traceability value

  • type: "discrete"