Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我尝试使用时,gplot2.geom_dotplot我得到了错误:
gplot2.geom_dotplot
AttributeError: 'module' object has no attribute 'geom_dotplot'
这个函数在 Rpy2 中有不同的名称吗?谢谢。
只是缺少该功能的映射。这是 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