Chart consistency + visual cleanup

This commit is contained in:
2026-07-26 23:04:36 +02:00
parent df83623101
commit aad3b85d8f
10 changed files with 326 additions and 293 deletions
@@ -110,14 +110,15 @@ plot <- ggplot(
vjust = -0.8,
check_overlap = TRUE
) +
scale_x_log10(name = "Instruction Execution Frequency") +
scale_y_log10(name = "Failure-Marker Occurrences") +
scale_x_log10(name = "Instruction Executions") +
scale_y_log10(name = "Fault Count") +
labs(
title = sprintf(
"Instruction / Fault Correlation (r_raw = %.4f, r_log = %.4f)",
cor_raw,
cor_log
),
# title = sprintf(
# "Instruction / Fault Correlation (r_raw = %.4f, r_log = %.4f)",
# cor_raw,
# cor_log
# ),
title = "Instruction / Fault Correlation",
colour = "Mnemonic"
) +
theme_minimal() +