class Google::Apis::PredictionV1_6::Analyze::DataDescription::OutputFeature::Numeric

Description of the output values in the data set.

Attributes

count[RW]

Number of numeric output values in the data set. Corresponds to the JSON property `count` @return [String]

mean[RW]

Mean of the output values in the data set. Corresponds to the JSON property `mean` @return [String]

variance[RW]

Variance of the output values in the data set. Corresponds to the JSON property `variance` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/prediction_v1_6/classes.rb, line 282
def update!(**args)
  @count = args[:count] if args.key?(:count)
  @mean = args[:mean] if args.key?(:mean)
  @variance = args[:variance] if args.key?(:variance)
end