Interface Experiment.Result.ConfidenceIntervalOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      double getConfidenceLevel()
      The confidence level used to construct the interval, i.e.
      double getLowerBound()
      Lower bound of the interval.
      double getRatio()
      The percent change between an experiment metric's value and the value for its control.
      double getUpperBound()
      Upper bound of the interval.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • Methods inherited from interface com.google.protobuf.MessageOrBuilder

        findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
    • Method Detail

      • getConfidenceLevel

        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:
        The confidenceLevel.
      • getRatio

        double getRatio()
         The percent change between an experiment metric's value and the value
         for its control.
         
        double ratio = 2;
        Returns:
        The ratio.
      • getLowerBound

        double getLowerBound()
         Lower bound of the interval.
         
        double lower_bound = 3;
        Returns:
        The lowerBound.
      • getUpperBound

        double getUpperBound()
         Upper bound of the interval.
         
        double upper_bound = 4;
        Returns:
        The upperBound.