最佳答案
我觉得这里的问题有点明显。我希望图例放置(锁定)在左上角的’绘图区域’。由于种种原因,使用 c (0.1,0.13)等不是一种选择。
有没有办法改变坐标的参考点,使它们相对于绘图区域?
mtcars$cyl <- factor(mtcars$cyl, labels=c("four","six","eight"))
ggplot(mtcars, aes(x=wt, y=mpg, colour=cyl)) + geom_point(aes(colour=cyl)) +
opts(legend.position = c(0, 1), title="Legend placement makes me sad")
干杯