Class ArimaCoefficients
Arima coefficients.
Inheritance
object
ArimaCoefficients
Implements
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ArimaCoefficients : IDirectResponseSchema
Properties
AutoRegressiveCoefficients
Auto-regressive coefficients, an array of double.
Declaration
[JsonProperty("autoRegressiveCoefficients")]
public virtual IList<double?> AutoRegressiveCoefficients { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><double?> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
InterceptCoefficient
Intercept coefficient, just a double not an array.
Declaration
[JsonProperty("interceptCoefficient")]
public virtual double? InterceptCoefficient { get; set; }
Property Value
Type | Description |
---|---|
double? |
MovingAverageCoefficients
Moving-average coefficients, an array of double.
Declaration
[JsonProperty("movingAverageCoefficients")]
public virtual IList<double?> MovingAverageCoefficients { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><double?> |