R ggplot2 - 使用 RGui 绘图时没有背景或网格线
我在 RGui 中的输出窗口(在 Win XP 下)遇到了一个奇怪的问题。我应该看到如下图所示的情节...
...当我运行此脚本时:
library(ggplot2)
x <- rnorm(100,0,1)
y <- rnorm(100,0,1)
z <- data.frame(x,y)
g <- ggplot(z, aes(x,y)) + geom_point() + theme_gray()
相反,在绘图窗口中它显示白色背景和白色网格线,如下所示。
R 绘图窗口
当我将绘图导出为 .png 并在 Windows 资源管理器中“预览”它时,它不显示背景或网格线。
Windows 中的 Png
Gimp 中的相同 Png
相同的 Png 上传到图片托管
对正在发生的事情有什么想法吗?如何让绘图在 RGUI 中正确显示?
I'm having a strange problem with the output window in RGui (under Win XP). I should see a plot like the one below...
... when I run this script:
library(ggplot2)
x <- rnorm(100,0,1)
y <- rnorm(100,0,1)
z <- data.frame(x,y)
g <- ggplot(z, aes(x,y)) + geom_point() + theme_gray()
Instead, in the plot window it shows a white background and white grid lines, like below.
R Plot Window
When I export the plot to .png and I "preview" it in windows explorer - it doesn't show a background or grid lines.
Png in Windows
Same Png in Gimp
Same Png uploaded to image hosting
Any ideas about what's going on? How can I get the plot to display correctly in RGui?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来像是设备问题而不是 R 问题,请尝试重新安装 GTK+。如果这不起作用,请尝试绘制 jpeg 而不是 png(如果可以的话)。
Sounds like a problem with the device rather than R, try reinstalling GTK+. If that doesn't work try plotting jpegs instead of png's if you can.