Interface Experiment.Result.ConfidenceIntervalOrBuilder (0.52.0)

public static interface Experiment.Result.ConfidenceIntervalOrBuilder extends MessageOrBuilder

Implements

MessageOrBuilder

Methods

getConfidenceLevel()

public abstract double getConfidenceLevel()

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

double confidence_level = 1;

Returns
TypeDescription
double

The confidenceLevel.

getLowerBound()

public abstract double getLowerBound()

Lower bound of the interval.

double lower_bound = 3;

Returns
TypeDescription
double

The lowerBound.

getRatio()

public abstract double getRatio()

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

double ratio = 2;

Returns
TypeDescription
double

The ratio.

getUpperBound()

public abstract double getUpperBound()

Upper bound of the interval.

double upper_bound = 4;

Returns
TypeDescription
double

The upperBound.