pub struct ArimaModelInfo {
pub arima_coefficients: Option<ArimaCoefficients>,
pub arima_fitting_metrics: Option<ArimaFittingMetrics>,
pub has_drift: Option<bool>,
pub has_holiday_effect: Option<bool>,
pub has_spikes_and_dips: Option<bool>,
pub has_step_changes: Option<bool>,
pub non_seasonal_order: Option<ArimaOrder>,
pub seasonal_periods: Option<Vec<String>>,
pub time_series_id: Option<String>,
pub time_series_ids: Option<Vec<String>>,
}Expand description
Arima model information.
This type is not used in any activity, and only used as part of another schema.
Fields§
§arima_coefficients: Option<ArimaCoefficients>Arima coefficients.
arima_fitting_metrics: Option<ArimaFittingMetrics>Arima fitting metrics.
has_drift: Option<bool>Whether Arima model fitted with drift or not. It is always false when d is not 1.
has_holiday_effect: Option<bool>If true, holiday_effect is a part of time series decomposition result.
has_spikes_and_dips: Option<bool>If true, spikes_and_dips is a part of time series decomposition result.
has_step_changes: Option<bool>If true, step_changes is a part of time series decomposition result.
non_seasonal_order: Option<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<String>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.
time_series_ids: Option<Vec<String>>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.
Trait Implementations§
Source§impl Clone for ArimaModelInfo
impl Clone for ArimaModelInfo
Source§fn clone(&self) -> ArimaModelInfo
fn clone(&self) -> ArimaModelInfo
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more