diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-09-24 17:10:33 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-09-24 17:10:33 +0200 |
commit | c84dc6bd3592d3430a9a57bfdec2e55856ce304e (patch) | |
tree | f0759d8aed14e06bcf762604d6fcb71efe32d1fc /artifacts/2022-09-24-s3billion/plot.R | |
parent | 3fc014ad3c3548dfaddc1b85b047aab761fc60ff (diff) | |
download | mknet-c84dc6bd3592d3430a9a57bfdec2e55856ce304e.tar.gz mknet-c84dc6bd3592d3430a9a57bfdec2e55856ce304e.zip |
Better scales
Diffstat (limited to 'artifacts/2022-09-24-s3billion/plot.R')
-rw-r--r-- | artifacts/2022-09-24-s3billion/plot.R | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/artifacts/2022-09-24-s3billion/plot.R b/artifacts/2022-09-24-s3billion/plot.R index e6997b0..b600771 100644 --- a/artifacts/2022-09-24-s3billion/plot.R +++ b/artifacts/2022-09-24-s3billion/plot.R @@ -4,6 +4,8 @@ read_csv("garage-v0.8-beta2-lmdb.csv") %>% mutate(batch_dur_sec = batch_dur_nano ggplot(s, aes(x=total_objects, y=batch_dur_sec)) + geom_point() + geom_smooth(method = "gam", se = FALSE) + + scale_x_continuous(expand=c(0,0), breaks = scales::pretty_breaks(n = 10))+ + scale_y_continuous(expand=c(0,0), breaks = scales::pretty_breaks(n = 10))+ labs( y="Time (in sec) spent sending a batch (8192 objects)", x="Total number of objects stored in the cluster", |