0

theme_classicPythonでrpy2からどのようにアクセスできますか? すなわちこれ:

http://www.inside-r.org/packages/cran/ggplot2/docs/theme_classic

rpy2から使う方法はありますか?

4

1 に答える 1

1

はいあります。で手動マッピングを使用している場合、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
于 2013-08-30T22:38:25.710 に答える