Struct gapi_grpc::google::cloud::bigquery::v2::model::ArimaForecastingMetrics[][src]

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

Model evaluation metrics for ARIMA forecasting models.

Fields

non_seasonal_order: Vec<ArimaOrder>

Non-seasonal order.

arima_fitting_metrics: Vec<ArimaFittingMetrics>

Arima model fitting metrics.

seasonal_periods: Vec<i32>

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

has_drift: Vec<bool>

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

time_series_id: Vec<String>

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

arima_single_model_forecasting_metrics: Vec<ArimaSingleModelForecastingMetrics>

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

Implementations

impl ArimaForecastingMetrics[src]

pub fn seasonal_periods(
    &self
) -> FilterMap<Cloned<Iter<'_, i32>>, fn(_: i32) -> Option<SeasonalPeriodType>>
[src]

Returns an iterator which yields the valid enum values contained in seasonal_periods.

pub fn push_seasonal_periods(&mut self, value: SeasonalPeriodType)[src]

Appends the provided enum value to seasonal_periods.

Trait Implementations

impl Clone for ArimaForecastingMetrics[src]

impl Debug for ArimaForecastingMetrics[src]

impl Default for ArimaForecastingMetrics[src]

impl Message for ArimaForecastingMetrics[src]

impl PartialEq<ArimaForecastingMetrics> for ArimaForecastingMetrics[src]

impl StructuralPartialEq for ArimaForecastingMetrics[src]

Auto Trait Implementations

impl RefUnwindSafe for ArimaForecastingMetrics

impl Send for ArimaForecastingMetrics

impl Sync for ArimaForecastingMetrics

impl Unpin for ArimaForecastingMetrics

impl UnwindSafe for ArimaForecastingMetrics

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> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 
[src]

impl<T> WithSubscriber for T[src]