forked from Deuxfleurs/mknet
Better scales
This commit is contained in:
parent
3fc014ad3c
commit
c84dc6bd35
2 changed files with 2 additions and 0 deletions
|
@ -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)) +
|
ggplot(s, aes(x=total_objects, y=batch_dur_sec)) +
|
||||||
geom_point() +
|
geom_point() +
|
||||||
geom_smooth(method = "gam", se = FALSE) +
|
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(
|
labs(
|
||||||
y="Time (in sec) spent sending a batch (8192 objects)",
|
y="Time (in sec) spent sending a batch (8192 objects)",
|
||||||
x="Total number of objects stored in the cluster",
|
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 |
Loading…
Reference in a new issue