Class ArimaForecastingMetrics
Model evaluation metrics for ARIMA forecasting models.
Inheritance
object
ArimaForecastingMetrics
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 ArimaForecastingMetrics : IDirectResponseSchema
Properties
ArimaFittingMetrics
Arima model fitting metrics.
Declaration
[JsonProperty("arimaFittingMetrics")]
public virtual IList<ArimaFittingMetrics> ArimaFittingMetrics { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><ArimaFittingMetrics> |
ArimaSingleModelForecastingMetrics
Repeated as there can be many metric sets (one for each model) in auto-arima and the large-scale case.
Declaration
[JsonProperty("arimaSingleModelForecastingMetrics")]
public virtual IList<ArimaSingleModelForecastingMetrics> ArimaSingleModelForecastingMetrics { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><ArimaSingleModelForecastingMetrics> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
HasDrift
Whether Arima model fitted with drift or not. It is always false when d is not 1.
Declaration
[JsonProperty("hasDrift")]
public virtual IList<bool?> HasDrift { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><bool?> |
NonSeasonalOrder
Non-seasonal order.
Declaration
[JsonProperty("nonSeasonalOrder")]
public virtual IList<ArimaOrder> NonSeasonalOrder { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><ArimaOrder> |
SeasonalPeriods
Seasonal periods. Repeated because multiple periods are supported for one time series.
Declaration
[JsonProperty("seasonalPeriods")]
public virtual IList<string> SeasonalPeriods { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><string> |
TimeSeriesId
Id to differentiate different time series for the large-scale case.
Declaration
[JsonProperty("timeSeriesId")]
public virtual IList<string> TimeSeriesId { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IList<T><string> |