Show / Hide Table of Contents

Class ArimaSingleModelForecastingMetrics

Model evaluation metrics for a single ARIMA forecasting model.

Inheritance
System.Object
ArimaSingleModelForecastingMetrics
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class ArimaSingleModelForecastingMetrics : IDirectResponseSchema

Properties

ArimaFittingMetrics

Arima fitting metrics.

Declaration
[JsonProperty("arimaFittingMetrics")]
public virtual ArimaFittingMetrics ArimaFittingMetrics { get; set; }
Property Value
Type Description
ArimaFittingMetrics

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

HasDrift

Is arima model fitted with drift or not. It is always false when d is not 1.

Declaration
[JsonProperty("hasDrift")]
public virtual bool? HasDrift { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HasHolidayEffect

If true, holiday_effect is a part of time series decomposition result.

Declaration
[JsonProperty("hasHolidayEffect")]
public virtual bool? HasHolidayEffect { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HasSpikesAndDips

If true, spikes_and_dips is a part of time series decomposition result.

Declaration
[JsonProperty("hasSpikesAndDips")]
public virtual bool? HasSpikesAndDips { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

HasStepChanges

If true, step_changes is a part of time series decomposition result.

Declaration
[JsonProperty("hasStepChanges")]
public virtual bool? HasStepChanges { get; set; }
Property Value
Type Description
System.Nullable<System.Boolean>

NonSeasonalOrder

Non-seasonal order.

Declaration
[JsonProperty("nonSeasonalOrder")]
public virtual ArimaOrder NonSeasonalOrder { get; set; }
Property Value
Type Description
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<System.String>

TimeSeriesId

The time_series_id value for this time series. It will be one of the unique values from the time_series_id_column specified during ARIMA model training. Only present when time_series_id_column training option was used.

Declaration
[JsonProperty("timeSeriesId")]
public virtual string TimeSeriesId { get; set; }
Property Value
Type Description
System.String

TimeSeriesIds

The tuple of time_series_ids identifying this time series. It will be one of the unique tuples of values present in the time_series_id_columns specified during ARIMA model training. Only present when time_series_id_columns training option was used and the order of values here are same as the order of time_series_id_columns.

Declaration
[JsonProperty("timeSeriesIds")]
public virtual IList<string> TimeSeriesIds { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top