Skip to content

Commit 1adb6df

Browse files
committed
fix: imports"
1 parent 3cbe7b3 commit 1adb6df

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/stats/gaussian_kde.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ndarray::{Array, Array1};
1+
use ndarray::Array1;
22
use std::f64::consts::PI;
33

44
/// A struct representing a Gaussian Kernel Density Estimator (KDE).
@@ -208,7 +208,7 @@ pub fn percentile(sorted_data: &Vec<f64>, p: f64) -> f64 {
208208
#[cfg(test)]
209209
mod tests {
210210
use super::*;
211-
use ndarray::Array1;
211+
use ndarray::{Array, Array1};
212212

213213
#[test]
214214
fn test_kde() {

0 commit comments

Comments
 (0)