1

我正在尝试使用 rpy2 自定义 ggplot2 中的图例。我注意到 ggplot2 到 rpy2 没有自定义图例所需的http://www.cookbook-r.com/Graphs/Legends_(ggplot2)/scale_shape_discrete中显示的其他方法。

from rpy2.robjects.lib import ggplot2
# not present
ggplot2.scale_shape_discrete 

通过rpy2重命名/自定义ggplot2中离散图例的正确方法是什么?这些方法可以访问吗?

4

1 回答 1

1

它不见了。你可以

1) 在 rpy2 的 bitbucket 页面上报告问题。

2)定义为:

from rpy2.robjects.lib import ggplot2
class ScaleShapeDiscrete(ggplot2.Scale):
    _constructor = ggplot2.ggplot2_env['scale_shape_discrete']
scale_shape_discrete = ScaleShapeDiscrete.new
于 2013-03-19T05:32:11.310 回答