我正在尝试更改 ggplot2 中构面网格/构面环绕顶部的条带的背景颜色,并删除它们的边界框(即仅显示标签)。似乎这个要求element_rect
在 rpy2 中没有定义——如何定义它的构造函数?或者有没有其他方法可以做到这一点element_rect
?我试过了:
my_plot += theme(**{'strip.background': element_blank()})
但它不起作用,给出错误:
rpy2.rinterface.RRuntimeError: Error in (function (el, elname) :
Element panel.background must be a element_rect object.
还,
from rpy2.robjects.lib.ggplot2 import element_rect
因导入错误而失败。如何才能做到这一点?