Class: Google::Apis::BigqueryV2::ArimaCoefficients
- Inherits:
-
Object
- Object
- Google::Apis::BigqueryV2::ArimaCoefficients
- 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 coefficients.
Instance Attribute Summary collapse
-
#auto_regressive_coefficients ⇒ Array<Float>
Auto-regressive coefficients, an array of double.
-
#intercept_coefficient ⇒ Float
Intercept coefficient, just a double not an array.
-
#moving_average_coefficients ⇒ Array<Float>
Moving-average coefficients, an array of double.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ArimaCoefficients
constructor
A new instance of ArimaCoefficients.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ArimaCoefficients
Returns a new instance of ArimaCoefficients.
154 155 156 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 154 def initialize(**args) update!(**args) end |
Instance Attribute Details
#auto_regressive_coefficients ⇒ Array<Float>
Auto-regressive coefficients, an array of double.
Corresponds to the JSON property autoRegressiveCoefficients
142 143 144 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 142 def auto_regressive_coefficients @auto_regressive_coefficients end |
#intercept_coefficient ⇒ Float
Intercept coefficient, just a double not an array.
Corresponds to the JSON property interceptCoefficient
147 148 149 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 147 def intercept_coefficient @intercept_coefficient end |
#moving_average_coefficients ⇒ Array<Float>
Moving-average coefficients, an array of double.
Corresponds to the JSON property movingAverageCoefficients
152 153 154 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 152 def moving_average_coefficients @moving_average_coefficients end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
159 160 161 162 163 |
# File 'lib/google/apis/bigquery_v2/classes.rb', line 159 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 |