当我尝试使用gplot2.geom_dotplot
时,我收到错误:
AttributeError: 'module' object has no attribute 'geom_dotplot'
此功能在Rpy2中是否有不同的名称?感谢。
答案 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