0
如何從Python中的rpy2訪問theme_classic
?即這樣的:如何從ggplot2在rpy2中訪問theme_classic?
http://www.inside-r.org/packages/cran/ggplot2/docs/theme_classic
有從rpy2使用它的方法嗎?
如何從Python中的rpy2訪問theme_classic
?即這樣的:如何從ggplot2在rpy2中訪問theme_classic?
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
的偉大工程的感謝!你碰巧有什麼想法http://stackoverflow.com/questions/17736434/aligning-distinct-non-facet-plots-in-ggplot2-using-rpy2-in-python?未解決的問題 – user248237dfsf