From 8eb4348594f2b4fa208be10a3b8ae9f6299f0748 Mon Sep 17 00:00:00 2001 From: Youngjoon Lee <5462944+youngjoon-lee@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:54:36 +0900 Subject: [PATCH] use f64 --- mixnet/ordering/src/bin/latency.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mixnet/ordering/src/bin/latency.rs b/mixnet/ordering/src/bin/latency.rs index c78ae35..520eba1 100644 --- a/mixnet/ordering/src/bin/latency.rs +++ b/mixnet/ordering/src/bin/latency.rs @@ -12,7 +12,7 @@ fn aggregate(path: &str) { { let dir_name = entry.path().file_name().unwrap().to_string_lossy(); if dir_name.starts_with("paramset_") { - let mut aggregated_series = Series::new_empty("", &DataType::Int64); + let mut aggregated_series = Series::new_empty("", &DataType::Float64); let pattern = format!("{}/**/latency.csv", entry.path().display()); for file in glob(&pattern).unwrap().filter_map(Result::ok) {