Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

GoogleCloudDialogflowCxV3ExperimentResultConfidenceInterval

import type { GoogleCloudDialogflowCxV3ExperimentResultConfidenceInterval } from "https://googleapis.deno.dev/v1/dialogflow:v3.ts";

A confidence interval is a range of possible values for the experiment objective you are trying to measure.

interface GoogleCloudDialogflowCxV3ExperimentResultConfidenceInterval {
confidenceLevel?: number;
lowerBound?: number;
ratio?: number;
upperBound?: number;
}

§Properties

§
confidenceLevel?: number
[src]

The confidence level used to construct the interval, i.e. there is X% chance that the true value is within this interval.

§
lowerBound?: number
[src]

Lower bound of the interval.

§
ratio?: number
[src]

The percent change between an experiment metric's value and the value for its control.

§
upperBound?: number
[src]

Upper bound of the interval.