pub struct HoltWintersResult {
pub level: Vec<f64>,
pub trend: Vec<f64>,
pub seasonal: Vec<f64>,
pub fitted: Vec<f64>,
}Expand description
Result of Holt-Winters smoothing.
Fields§
§level: Vec<f64>Level estimates.
trend: Vec<f64>Trend estimates.
seasonal: Vec<f64>Seasonal factors (length = data length + initial period).
fitted: Vec<f64>Fitted values (one-step-ahead in-sample forecasts).
Implementations§
Trait Implementations§
Source§impl Clone for HoltWintersResult
impl Clone for HoltWintersResult
Source§fn clone(&self) -> HoltWintersResult
fn clone(&self) -> HoltWintersResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HoltWintersResult
impl RefUnwindSafe for HoltWintersResult
impl Send for HoltWintersResult
impl Sync for HoltWintersResult
impl Unpin for HoltWintersResult
impl UnwindSafe for HoltWintersResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more