Skip to content
Snippets Groups Projects
Commit 329c9695 authored by Millian Poquet's avatar Millian Poquet
Browse files

notebook: pdf->svg for binary reproducibility

parent a2363a1a
No related branches found
No related tags found
No related merge requests found
...@@ -146,6 +146,7 @@ ...@@ -146,6 +146,7 @@
pkgs.rPackages.rmarkdown pkgs.rPackages.rmarkdown
pkgs.rPackages.rmdformats pkgs.rPackages.rmdformats
pkgs.rPackages.knitr pkgs.rPackages.knitr
pkgs.rPackages.svglite
pkgs.rPackages.tidyverse pkgs.rPackages.tidyverse
pkgs.rPackages.viridis pkgs.rPackages.viridis
]; ];
......
...@@ -274,7 +274,7 @@ data_nz %>% ...@@ -274,7 +274,7 @@ data_nz %>%
x="Job power estimator" x="Job power estimator"
) + ) +
scale_fill_grey(start=0.8, end=1) scale_fill_grey(start=0.8, end=1)
ggsave("./fig4-sched-mean-power-distribution.pdf", width=8*scale, height=4*scale) ggsave("./fig4-sched-mean-power-distribution.svg", width=8*scale, height=4*scale)
``` ```
Here is the code that produces the summarized power underutilization values seen in Section 6.5 of the article. Here is the code that produces the summarized power underutilization values seen in Section 6.5 of the article.
...@@ -317,7 +317,7 @@ data_nz %>% ...@@ -317,7 +317,7 @@ data_nz %>%
x="Job power estimator" x="Job power estimator"
) + ) +
scale_fill_grey(start=0.8, end=1) scale_fill_grey(start=0.8, end=1)
ggsave("./fig5-sched-mtt-diff-distribution.pdf", width=8*scale, height=4*scale) ggsave("./fig5-sched-mtt-diff-distribution.svg", width=8*scale, height=4*scale)
``` ```
Here is the code that produces the summarized scheduling performance degradation values seen in Section 6.5 of the article. Here is the code that produces the summarized scheduling performance degradation values seen in Section 6.5 of the article.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment