Class: Google::Apis::BigqueryV2::Row

Inherits:
Object
  • Object
show all
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

A single row in the confusion matrix.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Row

Returns a new instance of Row.



8284
8285
8286
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8284

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

Instance Attribute Details

#actual_labelString

The original label of this row. Corresponds to the JSON property actualLabel

Returns:

  • (String)


8277
8278
8279
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8277

def actual_label
  @actual_label
end

#entriesArray<Google::Apis::BigqueryV2::Entry>

Info describing predicted label distribution. Corresponds to the JSON property entries



8282
8283
8284
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8282

def entries
  @entries
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8289
8290
8291
8292
# File 'lib/google/apis/bigquery_v2/classes.rb', line 8289

def update!(**args)
  @actual_label = args[:actual_label] if args.key?(:actual_label)
  @entries = args[:entries] if args.key?(:entries)
end