Class: Google::Apis::DialogflowV3beta1::GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/dialogflow_v3beta1/classes.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb,
lib/google/apis/dialogflow_v3beta1/representations.rb

Overview

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval

Returns a new instance of GoogleCloudDialogflowCxV3beta1ExperimentResultConfidenceInterval.



5573
5574
5575
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5573

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#confidence_levelFloat

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

Returns:

  • (Float)


5555
5556
5557
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5555

def confidence_level
  @confidence_level
end

#lower_boundFloat

Lower bound of the interval. Corresponds to the JSON property lowerBound

Returns:

  • (Float)


5560
5561
5562
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5560

def lower_bound
  @lower_bound
end

#ratioFloat

The percent change between an experiment metric's value and the value for its control. Corresponds to the JSON property ratio

Returns:

  • (Float)


5566
5567
5568
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5566

def ratio
  @ratio
end

#upper_boundFloat

Upper bound of the interval. Corresponds to the JSON property upperBound

Returns:

  • (Float)


5571
5572
5573
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5571

def upper_bound
  @upper_bound
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5578
5579
5580
5581
5582
5583
# File 'lib/google/apis/dialogflow_v3beta1/classes.rb', line 5578

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