A one-liner to position the legend on the right side of the plot with correct right alignment for both the key box and text labels.
Details
When by is NULL (default), this function sets three theme elements:
legend.position = "right"to place the legend on the rightlegend.justification = "right"to right-justify the legend boxlegend.box.just = "right"to right-align multiple legend boxes
When by is specified, only the legend for that aesthetic is moved,
allowing different legends to be placed in different positions.
Examples
library(ggplot2)
# Basic usage
ggplot(mtcars, aes(mpg, wt, color = factor(cyl))) +
geom_point() +
legend_right()
# Position only the size legend on the right
ggplot(mtcars, aes(mpg, wt, color = factor(cyl), size = hp)) +
geom_point() +
legend_bottom(by = "colour") +
legend_right(by = "size")