Class: Google::Apis::BigqueryV2::ArimaModelInfo

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/bigquery_v2/classes.rb,
generated/google/apis/bigquery_v2/representations.rb,
generated/google/apis/bigquery_v2/representations.rb

Overview

Arima model information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ArimaModelInfo

Returns a new instance of ArimaModelInfo.



223
224
225
# File 'generated/google/apis/bigquery_v2/classes.rb', line 223

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

Instance Attribute Details

#arima_coefficientsGoogle::Apis::BigqueryV2::ArimaCoefficients

Arima coefficients. Corresponds to the JSON property arimaCoefficients



211
212
213
# File 'generated/google/apis/bigquery_v2/classes.rb', line 211

def arima_coefficients
  @arima_coefficients
end

#arima_fitting_metricsGoogle::Apis::BigqueryV2::ArimaFittingMetrics

ARIMA model fitting metrics. Corresponds to the JSON property arimaFittingMetrics



216
217
218
# File 'generated/google/apis/bigquery_v2/classes.rb', line 216

def arima_fitting_metrics
  @arima_fitting_metrics
end

#non_seasonal_orderGoogle::Apis::BigqueryV2::ArimaOrder

Arima order, can be used for both non-seasonal and seasonal parts. Corresponds to the JSON property nonSeasonalOrder



221
222
223
# File 'generated/google/apis/bigquery_v2/classes.rb', line 221

def non_seasonal_order
  @non_seasonal_order
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



228
229
230
231
232
# File 'generated/google/apis/bigquery_v2/classes.rb', line 228

def update!(**args)
  @arima_coefficients = args[:arima_coefficients] if args.key?(:arima_coefficients)
  @arima_fitting_metrics = args[:arima_fitting_metrics] if args.key?(:arima_fitting_metrics)
  @non_seasonal_order = args[:non_seasonal_order] if args.key?(:non_seasonal_order)
end