class Google::Apis::PredictionV1_6::Analyze::DataDescription::Feature::Numeric
Description of the numeric values of this feature.
Attributes
count[RW]
Number of numeric values for this feature in the data set. Corresponds to the JSON property `count` @return [String]
mean[RW]
Mean of the numeric values of this feature in the data set. Corresponds to the JSON property `mean` @return [String]
variance[RW]
Variance of the numeric values of this feature 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 202 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 207 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