This commit is contained in:
Youngjoon Lee 2024-09-26 10:54:36 +09:00
parent b35c3d7ec5
commit 8eb4348594
No known key found for this signature in database
GPG Key ID: 167546E2D1712F8C

View File

@ -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) {