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

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

Arima model information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ArimaModelInfo

Returns a new instance of ArimaModelInfo.



315
316
317
# File 'lib/google/apis/bigquery_v2/classes.rb', line 315

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

Instance Attribute Details

#arima_coefficientsGoogle::Apis::BigqueryV2::ArimaCoefficients

Arima coefficients. Corresponds to the JSON property arimaCoefficients



256
257
258
# File 'lib/google/apis/bigquery_v2/classes.rb', line 256

def arima_coefficients
  @arima_coefficients
end

#arima_fitting_metricsGoogle::Apis::BigqueryV2::ArimaFittingMetrics

ARIMA model fitting metrics. Corresponds to the JSON property arimaFittingMetrics



261
262
263
# File 'lib/google/apis/bigquery_v2/classes.rb', line 261

def arima_fitting_metrics
  @arima_fitting_metrics
end

#has_driftBoolean Also known as: has_drift?

Whether Arima model fitted with drift or not. It is always false when d is not 1. Corresponds to the JSON property hasDrift

Returns:

  • (Boolean)


267
268
269
# File 'lib/google/apis/bigquery_v2/classes.rb', line 267

def has_drift
  @has_drift
end

#has_holiday_effectBoolean Also known as: has_holiday_effect?

If true, holiday_effect is a part of time series decomposition result. Corresponds to the JSON property hasHolidayEffect

Returns:

  • (Boolean)


273
274
275
# File 'lib/google/apis/bigquery_v2/classes.rb', line 273

def has_holiday_effect
  @has_holiday_effect
end

#has_spikes_and_dipsBoolean Also known as: has_spikes_and_dips?

If true, spikes_and_dips is a part of time series decomposition result. Corresponds to the JSON property hasSpikesAndDips

Returns:

  • (Boolean)


279
280
281
# File 'lib/google/apis/bigquery_v2/classes.rb', line 279

def has_spikes_and_dips
  @has_spikes_and_dips
end

#has_step_changesBoolean Also known as: has_step_changes?

If true, step_changes is a part of time series decomposition result. Corresponds to the JSON property hasStepChanges

Returns:

  • (Boolean)


285
286
287
# File 'lib/google/apis/bigquery_v2/classes.rb', line 285

def has_step_changes
  @has_step_changes
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



291
292
293
# File 'lib/google/apis/bigquery_v2/classes.rb', line 291

def non_seasonal_order
  @non_seasonal_order
end

#seasonal_periodsArray<String>

Seasonal periods. Repeated because multiple periods are supported for one time series. Corresponds to the JSON property seasonalPeriods

Returns:

  • (Array<String>)


297
298
299
# File 'lib/google/apis/bigquery_v2/classes.rb', line 297

def seasonal_periods
  @seasonal_periods
end

#time_series_idString

The time_series_id value for this time series. It will be one of the unique values from the time_series_id_column specified during ARIMA model training. Only present when time_series_id_column training option was used. Corresponds to the JSON property timeSeriesId

Returns:

  • (String)


304
305
306
# File 'lib/google/apis/bigquery_v2/classes.rb', line 304

def time_series_id
  @time_series_id
end

#time_series_idsArray<String>

The tuple of time_series_ids identifying this time series. It will be one of the unique tuples of values present in the time_series_id_columns specified during ARIMA model training. Only present when time_series_id_columns training option was used and the order of values here are same as the order of time_series_id_columns. Corresponds to the JSON property timeSeriesIds

Returns:

  • (Array<String>)


313
314
315
# File 'lib/google/apis/bigquery_v2/classes.rb', line 313

def time_series_ids
  @time_series_ids
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



320
321
322
323
324
325
326
327
328
329
330
331
# File 'lib/google/apis/bigquery_v2/classes.rb', line 320

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)
  @has_drift = args[:has_drift] if args.key?(:has_drift)
  @has_holiday_effect = args[:has_holiday_effect] if args.key?(:has_holiday_effect)
  @has_spikes_and_dips = args[:has_spikes_and_dips] if args.key?(:has_spikes_and_dips)
  @has_step_changes = args[:has_step_changes] if args.key?(:has_step_changes)
  @non_seasonal_order = args[:non_seasonal_order] if args.key?(:non_seasonal_order)
  @seasonal_periods = args[:seasonal_periods] if args.key?(:seasonal_periods)
  @time_series_id = args[:time_series_id] if args.key?(:time_series_id)
  @time_series_ids = args[:time_series_ids] if args.key?(:time_series_ids)
end