Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 ubuntu 12.04 上使用 ggplot2。默认情况下,我的 x11 类型设置为 Xlib。因此,当我在 qplot 中使用平滑器时,会出现如下错误:
“此设备不支持半透明:每页仅报告一次”。
但是,如果我调用 x11(type="cairo"),一切正常。
如何将 cairo 作为 x11 的默认后端?
要使其永久化,您可以将以下行添加到您的 ~/.Rprofile 文件中:
setHook(packageEvent("grDevices", "onLoad"), function(...) grDevices::X11.options(type='cairo')) options(device='x11')
定义另一个设置正确类型的函数'x11':
x11 = function (...) grDevices::x11(...,type='cairo')