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