Strip the tacle-.*- prefix to make the facet titles fit

This commit is contained in:
2026-08-17 23:43:52 +02:00
parent bf94e83738
commit 7abdc4d032
2 changed files with 7 additions and 3 deletions
+5 -1
View File
@@ -42,7 +42,11 @@ extract_info <- function(path) {
warning(paste("Could not parse:", dir_name))
return(NULL)
}
list(base_name = match[1, 2], variant = match[1, 3], path = path)
# "tacle-kernel-bsort" -> "bsort", otherwise it doesn't fit
base_name <- sub("^tacle-[^-]+-", "", match[1, 2])
list(base_name = base_name, variant = match[1, 3], path = path)
}
# Load data