Class: Google::Apis::BigqueryV2::ArimaOrder
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ArimaOrder
- 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 order, can be used for both non-seasonal and seasonal parts.
Instance Attribute Summary collapse
-
#d ⇒ Fixnum
Order of the differencing part.
-
#p ⇒ Fixnum
Order of the autoregressive part.
-
#q ⇒ Fixnum
Order of the moving-average part.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ArimaOrder
constructor
A new instance of ArimaOrder.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ArimaOrder
Returns a new instance of ArimaOrder.
351 352 353 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 351 def initialize(**args) update!(**args) end |
Instance Attribute Details
#d ⇒ Fixnum
Order of the differencing part.
Corresponds to the JSON property d
339 340 341 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 339 def d @d end |
#p ⇒ Fixnum
Order of the autoregressive part.
Corresponds to the JSON property p
344 345 346 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 344 def p @p end |
#q ⇒ Fixnum
Order of the moving-average part.
Corresponds to the JSON property q
349 350 351 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 349 def q @q end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
356 357 358 359 360 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 356 def update!(**args) @d = args[:d] if args.key?(:d) @p = args[:p] if args.key?(:p) @q = args[:q] if args.key?(:q) end |