class Google::Apis::DialogflowV3::GoogleCloudDialogflowCxV3ExperimentResultConfidenceInterval

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

Attributes

confidence_level[RW]

The confidence level used to construct the interval, i.e. there is X% chance that the true value is within this interval. Corresponds to the JSON property `confidenceLevel` @return [Float]

lower_bound[RW]

Lower bound of the interval. Corresponds to the JSON property `lowerBound` @return [Float]

ratio[RW]

The percent change between an experiment metric's value and the value for its control. Corresponds to the JSON property `ratio` @return [Float]

upper_bound[RW]

Upper bound of the interval. Corresponds to the JSON property `upperBound` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/dialogflow_v3/classes.rb, line 1212
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/dialogflow_v3/classes.rb, line 1217
def update!(**args)
  @confidence_level = args[:confidence_level] if args.key?(:confidence_level)
  @lower_bound = args[:lower_bound] if args.key?(:lower_bound)
  @ratio = args[:ratio] if args.key?(:ratio)
  @upper_bound = args[:upper_bound] if args.key?(:upper_bound)
end