Better scales

This commit is contained in:
Quentin 2022-09-24 17:10:33 +02:00
parent 3fc014ad3c
commit c84dc6bd35
Signed by: quentin
GPG Key ID: E9602264D639FF68
2 changed files with 2 additions and 0 deletions

View File

@ -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",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 226 KiB

After

Width:  |  Height:  |  Size: 244 KiB