class Google::Apis::DiscoveryengineV1::GoogleApiDistribution

fields meaningless.
of values, as this will render the ‘mean` and `sum_of_squared_deviation`
a bad idea to include non-finite values (infinities or NaNs) in the population
exponentially increasing widths. Although it is not forbidden, it is generally
buckets are given either explicitly or by formulas for buckets of fixed or
gives a count of values that fall into each bucket. The boundaries of the
of population of values. The histogram is based on a sequence of buckets and
the squared deviation from the mean, the minimum, and the maximum of the set
across a set of buckets. The summary statistics are the count, mean, sum of
optionally contains a histogram representing the distribution of those values
`Distribution` contains summary statistics for a population of values. It

def initialize(**args)

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

def update!(**args)

Update properties of this object
def update!(**args)
  @bucket_counts = args[:bucket_counts] if args.key?(:bucket_counts)
  @bucket_options = args[:bucket_options] if args.key?(:bucket_options)
  @count = args[:count] if args.key?(:count)
  @exemplars = args[:exemplars] if args.key?(:exemplars)
  @mean = args[:mean] if args.key?(:mean)
  @range = args[:range] if args.key?(:range)
  @sum_of_squared_deviation = args[:sum_of_squared_deviation] if args.key?(:sum_of_squared_deviation)
end