class Google::Apis::BigqueryV2::ArimaCoefficients

Arima coefficients.

Attributes

auto_regressive_coefficients[RW]

Auto-regressive coefficients, an array of double. Corresponds to the JSON property `autoRegressiveCoefficients` @return [Array<Float>]

intercept_coefficient[RW]

Intercept coefficient, just a double not an array. Corresponds to the JSON property `interceptCoefficient` @return [Float]

moving_average_coefficients[RW]

Moving-average coefficients, an array of double. Corresponds to the JSON property `movingAverageCoefficients` @return [Array<Float>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/bigquery_v2/classes.rb, line 152
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 157
def update!(**args)
  @auto_regressive_coefficients = args[:auto_regressive_coefficients] if args.key?(:auto_regressive_coefficients)
  @intercept_coefficient = args[:intercept_coefficient] if args.key?(:intercept_coefficient)
  @moving_average_coefficients = args[:moving_average_coefficients] if args.key?(:moving_average_coefficients)
end