Skip to content

Commit

Permalink
fix: imports"
Browse files Browse the repository at this point in the history
  • Loading branch information
dancixx committed Jan 31, 2025
1 parent 3cbe7b3 commit 1adb6df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/stats/gaussian_kde.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use ndarray::{Array, Array1};
use ndarray::Array1;
use std::f64::consts::PI;

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

#[test]
fn test_kde() {
Expand Down

0 comments on commit 1adb6df

Please sign in to comment.