pub struct Forecaster { /* private fields */ }Expand description
Time series forecaster.
Implementations§
Source§impl Forecaster
impl Forecaster
Sourcepub fn forecast(
&self,
data: &[f64],
horizon: usize,
method: ForecastMethod,
) -> ForecastResult
pub fn forecast( &self, data: &[f64], horizon: usize, method: ForecastMethod, ) -> ForecastResult
Forecast using the specified method.
Trait Implementations§
Source§impl Debug for Forecaster
impl Debug for Forecaster
Auto Trait Implementations§
impl Freeze for Forecaster
impl RefUnwindSafe for Forecaster
impl Send for Forecaster
impl Sync for Forecaster
impl Unpin for Forecaster
impl UnsafeUnpin for Forecaster
impl UnwindSafe for Forecaster
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