rpy2中的geom_dotplot?

时间:2013-03-07 00:59:29

标签: python ggplot2 rpy2

当我尝试使用gplot2.geom_dotplot时,我收到错误:

AttributeError: 'module' object has no attribute 'geom_dotplot'

此功能在Rpy2中是否有不同的名称?感谢。

1 个答案:

答案 0 :(得分:1)

缺少该功能的映射。这是rpy2的错误。修复程序将很快在存储库中(将与2.3.4版一起发布)。

与此同时,解决方法是将以下内容添加到您的代码中:

from rpy2.robjects.lib import ggplot2

class GeomDotplot(ggplot2.Geom):
    _constructor = ggplot2.ggplot2_env['geom_dotplot']
ggplot2.geom_dotplot = GeomDotplot.new