1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
extern crate rand;
use arima::{acf, sim};
use rand::prelude::*;
use rand_distr::{Distribution, Normal};

fn main() {
    // initialize RNG with seed
    let mut rng: StdRng = SeedableRng::from_seed([100; 32]);

    // our noise should be normally distributed
    let normal = Normal::new(10.0, 2.0).unwrap();

    // simulate time series
    let ts = sim::arima_sim(
        1000,                               // number of samples
        Some(&[0.7, 0.2]),                  // AR parameters
        None,                               // MA parameters
        0,                                  // difference parameter
        &|mut rng| normal.sample(&mut rng), // noise fn
        &mut rng,                           // RNG
    )
    .unwrap();

    // estimate AR parameters
    let ar = acf::ar(&ts, Some(2)).unwrap();

    println!("Estimated parameters: {:?}", ar);
    // Estimated parameters: [0.7436892808499717, 0.14774749031248915]
}