class Google::Apis::BigqueryV2::ArimaOrder
Arima order, can be used for both non-seasonal and seasonal parts.
Attributes
d[RW]
Order of the differencing part. Corresponds to the JSON property `d` @return [Fixnum]
p[RW]
Order of the autoregressive part. Corresponds to the JSON property `p` @return [Fixnum]
q[RW]
Order of the moving-average part. Corresponds to the JSON property `q` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 351 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# 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