Struct google_bigquery2::api::ArimaForecastingMetrics[][src]

pub struct ArimaForecastingMetrics {
    pub arima_fitting_metrics: Option<Vec<ArimaFittingMetrics>>,
    pub arima_single_model_forecasting_metrics: Option<Vec<ArimaSingleModelForecastingMetrics>>,
    pub has_drift: Option<Vec<bool>>,
    pub non_seasonal_order: Option<Vec<ArimaOrder>>,
    pub seasonal_periods: Option<Vec<String>>,
    pub time_series_id: Option<Vec<String>>,
}

Model evaluation metrics for ARIMA forecasting models.

This type is not used in any activity, and only used as part of another schema.

Fields

arima_fitting_metrics: Option<Vec<ArimaFittingMetrics>>

Arima model fitting metrics.

arima_single_model_forecasting_metrics: Option<Vec<ArimaSingleModelForecastingMetrics>>

Repeated as there can be many metric sets (one for each model) in auto-arima and the large-scale case.

has_drift: Option<Vec<bool>>

Whether Arima model fitted with drift or not. It is always false when d is not 1.

non_seasonal_order: Option<Vec<ArimaOrder>>

Non-seasonal order.

seasonal_periods: Option<Vec<String>>

Seasonal periods. Repeated because multiple periods are supported for one time series.

time_series_id: Option<Vec<String>>

Id to differentiate different time series for the large-scale case.

Trait Implementations

impl Clone for ArimaForecastingMetrics[src]

impl Debug for ArimaForecastingMetrics[src]

impl Default for ArimaForecastingMetrics[src]

impl<'de> Deserialize<'de> for ArimaForecastingMetrics[src]

impl Part for ArimaForecastingMetrics[src]

impl Serialize for ArimaForecastingMetrics[src]

Auto Trait Implementations

impl RefUnwindSafe for ArimaForecastingMetrics[src]

impl Send for ArimaForecastingMetrics[src]

impl Sync for ArimaForecastingMetrics[src]

impl Unpin for ArimaForecastingMetrics[src]

impl UnwindSafe for ArimaForecastingMetrics[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.