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.
我对 R 很陌生,所以请原谅缺乏知识。我正在做一门需要包 rgl 的课程,并设法(最终)解决了我需要安装 XQuartz 的问题——我已经完成了。它正在工作,但我无法让这些图以彩色显示 - 它们只有黑白。有谁知道我做错了什么/如何解决?我试过查看 XQuartz 文档,但无法解决。
谢谢!
您需要提供一个可重现的示例,包括您的代码。我在 XQuartz 设备上获取颜色没有任何困难:
set.seed(42) x <- runif(10) y <- runif(10) plot(x, y, pch=21, bg=2:6, cex=3)