Class: Google::Apis::BigqueryV2::Explanation
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::Explanation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/bigquery_v2/classes.rb,
lib/google/apis/bigquery_v2/representations.rb,
lib/google/apis/bigquery_v2/representations.rb
Overview
Explanation for a single feature.
Instance Attribute Summary collapse
-
#attribution ⇒ Float
Attribution of feature.
-
#feature_name ⇒ String
The full feature name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Explanation
constructor
A new instance of Explanation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Explanation
Returns a new instance of Explanation.
2542 2543 2544 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2542 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attribution ⇒ Float
Attribution of feature.
Corresponds to the JSON property attribution
2534 2535 2536 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2534 def attribution @attribution end |
#feature_name ⇒ String
The full feature name. For non-numerical features, will be formatted like .
.
Overall size of feature name will always be truncated to first 120 characters.
Corresponds to the JSON property featureName
2540 2541 2542 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2540 def feature_name @feature_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2547 2548 2549 2550 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 2547 def update!(**args) @attribution = args[:attribution] if args.key?(:attribution) @feature_name = args[:feature_name] if args.key?(:feature_name) end |