RPy2 - ggplot2 - 如何修改图例?

时间:2016-03-09 14:13:51

标签: python r ggplot2 legend rpy2

如何使用rpy2修改使用ggplot2构建的绘图的图例? 我的情节如下:

plot_2 = (ggplot2.ggplot(second_dt) +
          ggplot2.aes_string(x='timestamp', y='diff_percentage') +
          ggplot2.geom_point() +
          ggplot2.geom_line())

我想修改图例的位置。

1 个答案:

答案 0 :(得分:1)

好的,这样就足够了:

plot_2 = (ggplot2.ggplot(second_dt) +
          ggplot2.aes_string(x='timestamp', y='diff_percentage') +
          ggplot2.geom_point() +
          ggplot2.geom_line() +
          ggplot2.theme(**{'legend.position': <position>}))