如何使用rpy2修改使用ggplot2构建的绘图的图例? 我的情节如下:
plot_2 = (ggplot2.ggplot(second_dt) +
ggplot2.aes_string(x='timestamp', y='diff_percentage') +
ggplot2.geom_point() +
ggplot2.geom_line())
我想修改图例的位置。
答案 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>}))