(series: Vec<f64>, diff_amt: f64, thresh: f64)
| 12 | |
| 13 | #[pyfunction(name = "frac_diff")] |
| 14 | fn fracdiff_frac_diff(series: Vec<f64>, diff_amt: f64, thresh: f64) -> Vec<f64> { |
| 15 | openquant::fracdiff::frac_diff(&series, diff_amt, thresh) |
| 16 | } |
| 17 | |
| 18 | #[pyfunction(name = "frac_diff_ffd")] |
| 19 | fn fracdiff_frac_diff_ffd(series: Vec<f64>, diff_amt: f64, thresh: f64) -> Vec<f64> { |
nothing calls this directly
no test coverage detected