如何theme_classic
在 Python 中从 rpy2 访问?即:
http://www.inside-r.org/packages/cran/ggplot2/docs/theme_classic
有没有办法从 rpy2 使用它?
如何theme_classic
在 Python 中从 rpy2 访问?即:
http://www.inside-r.org/packages/cran/ggplot2/docs/theme_classic
有没有办法从 rpy2 使用它?
就在这里。如果在 中使用手动映射rpy2.robjects.lib.ggplot2
,它目前是否从那里丢失,但修补此问题的方法应该是:
import rpy2.robjects.lib.ggplot2 as ggplot2
class ThemeClassic(ggplot2.Theme):
_constructor = ggplot2.ggplot2.theme_classic
@classmethod
def new(cls):
res = cls(cls._constructor())
return res
# Monkey patching ggplot2
ggplot2.theme_classic = ThemeClassic.new