ContinuousFirstLevelDrillDownInsight: BaseDrillDownInsight & {
    costRSquared?: number;
    costSlope?: number;
    costYIntercept?: number;
    defectRSquared?: number;
    defectSlope?: number;
    defectYIntercept?: number;
    type: "continuous";
}

Type declaration

  • OptionalcostRSquared?: number

    R² measure of how much variation can be explained by this independent variable using a linear regression. If set, then the cost was significantly impacted by this field.

  • OptionalcostSlope?: number

    Slope of the best-fit line for cost regression. If set, then the cost was significantly impacted by this field.

  • OptionalcostYIntercept?: number

    Y-Intercept of the best-fit line for cost regression. If set, then the cost was significantly impacted by this field.

  • OptionaldefectRSquared?: number

    R² measure of how much variation can be explained by this independent variable using a linear regression. If set, then the defect count was significantly impacted by this field.

  • OptionaldefectSlope?: number

    Slope of the best-fit line for defect count regression. If set, then the defect count was significantly impacted by this field.

  • OptionaldefectYIntercept?: number

    Y-Intercept of the best-fit line for defect count regression. If set, then the defect count was significantly impacted by this field.

  • type: "continuous"