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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
use crate::evaluator::*;

/// Measure of the variability amplitude
///
/// $$
/// \frac{\sigma_m^2 - \langle \delta^2 \rangle}{\sigma_m^2},
/// $$
/// where $\langle \delta^2 \rangle$ is the mean of squared error, $\sigma_m$ is the magnitude
/// standard deviation. Note that this definition differs from
/// [Sánchez et al. 2017](https://doi.org/10.3847/1538-4357/aa9188)
///
/// - Depends on: **magnitude**, **error**
/// - Minimum number of observations: **2**
/// - Number of features: **1**
///
/// Sánchez et al. 2017 [DOI:10.3847/1538-4357/aa9188](https://doi.org/10.3847/1538-4357/aa9188)
#[derive(Clone, Default, Debug)]
pub struct ExcessVariance {}

lazy_info!(
    EXCESS_VARIANCE_INFO,
    size: 1,
    min_ts_length: 2,
    t_required: false,
    m_required: true,
    w_required: true,
    sorting_required: false,
);

impl ExcessVariance {
    pub fn new() -> Self {
        Self {}
    }
}

impl<T> FeatureEvaluator<T> for ExcessVariance
where
    T: Float,
{
    fn eval(&self, ts: &mut TimeSeries<T>) -> Result<Vec<T>, EvaluatorError> {
        self.check_ts_length(ts)?;
        let mean_error2 = ts.w_iter().map(|w| w.recip()).sum::<T>() / ts.lenf();
        Ok(vec![
            (ts.m.get_std2() - mean_error2) / ts.m.get_mean().powi(2),
        ])
    }

    fn get_info(&self) -> &EvaluatorInfo {
        &EXCESS_VARIANCE_INFO
    }

    fn get_names(&self) -> Vec<&str> {
        vec!["excess_variance"]
    }
}

#[cfg(test)]
#[allow(clippy::unreadable_literal)]
#[allow(clippy::excessive_precision)]
mod tests {
    use super::*;
    use crate::tests::*;

    eval_info_test!(excess_variance, ExcessVariance::default());

    feature_test!(
        mean,
        [Box::new(ExcessVariance::new())],
        [0.41846885813148793],
        [0.0; 9],
        [1.0_f32, 1.0, 1.0, 1.0, 5.0, 6.0, 6.0, 6.0, 7.0],
        Some(&[1.0, 0.5, 1.0, 2.0, 0.5, 2.0, 1.0, 1.0, 0.5]),
    );
}