Fix legend position to avoid overlaps

This commit is contained in:
Quentin 2022-08-05 18:23:21 +02:00
parent bcb51d2402
commit efd3a46475
Signed by: quentin
GPG Key ID: E9602264D639FF68
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 166 KiB

View File

@ -46,6 +46,6 @@ ggplot(clust, aes(x=cluster_size,y=time,fill=aggregation)) +
subtitle="ran on 6 physical nodes on Grid5000 with multiple instances on each node\nspread on 3 zones: Lyon (nova), Rennes (paravance) and Nantes (econome)\nfew contention, latency is mainly due to RPC communications except on biggest values") +
facet_wrap(~endpoint) +
theme_classic() +
theme(legend.position = c(.8, .3))
theme(legend.position = c(.8, .2))
ggsave("png/rpc-complexity.png", width=200, height=110, units="mm")