R基础包网格不产生输出

时间:2012-05-23 21:32:58

标签: r amazon-ec2 windows-server-2008

我在Windows Server 2008 R2 Amazon EC2实例上运行64位R 2.15.0。 grid不会产生输出。例如,以下代码应在设备窗口中生成单个对角线:

grid.newpage()
l <- linesGrob()
grid.draw(l)
但是,我什么也看不见。我应该在Windows Server 2008 R2上使用标志或选项来启用网格输出吗?

编辑:另一个可重现的示例适用于我的家庭(Windows 7 x64)和工作PC(Windows XP):

library(grid)
library(png)

img.path <- system.file("img", "Rlogo.png", package="png")
bg <- readPNG(img.path)
background <- rasterGrob(unclass(bg))

grid.draw(background)

这是预期的输出,如我的工作PC上所示(调整大小以适合下面):

R-log-png

2 个答案:

答案 0 :(得分:2)

可以调用

dev.list()来返回打开的图形设备的命名向量。在Windows上,例如:

windows()
pdf()
dev.list()
# windows     pdf 
#       2       3 
dev.off(); dev.off()
dev.list()
# NULL

dev.cur()将返回当前有效的设备。如果没有设备打开,您可以打开一个:

windows()
grid.newpage()
l <- linesGrob()
grid.draw(l)

对于pdf,您必须确保关闭设备,否则pdf文件将无法呈现:

pdf() # plot saved by default to Rplots.pdf
grid.newpage()
l <- linesGrob()
grid.draw(l)
dev.off() 

?device帮助页面列出了其他图形设备。通常,对grid.newpage()的调用会自动打开一个新设备,如果没有打开,但可能不是你的情况。以上示例适用于Windows 7 x64和Ubuntu 11.10 x64。

@attitude_stool:上述任何一项有助于确定您的问题吗?

答案 1 :(得分:2)

R无法通过远程桌面连接在窗口设备中正确生成光栅图像。如果需要光栅图像,则必须将图输出到另一个设备。

library(ggplot2)
library(grid)
library(maps)
library(mapproj)
library(png)
library(RgoogleMaps)

counties <- map_data("county", region="virginia")
states <- map_data("state")

tmp <- tempfile(fileext=".png")
bg <- GetMap.bbox(range(counties$long), range(counties$lat), destfile=tmp, 
     maptype="satellite", format="png32")
background <- readPNG(tmp)
background <- rasterGrob(unclass(background))

p <- ggplot(counties, aes(long, lat)) +
   coord_map(xlim=c(bg$BBOX$ll[2], bg$BBOX$ur[2]), 
             ylim=c(bg$BBOX$ll[1], bg$BBOX$ur[1])) +
   geom_path(aes(group=group), color="darkgrey") +
   geom_path(data=states, aes(group=group), color="white", size=1) +
   opts(axis.line=theme_blank(),
        axis.text.x=theme_blank(),
        axis.text.y=theme_blank(),
        axis.ticks=theme_blank(),
        axis.title.x=theme_blank(),
        axis.title.y=theme_blank(),
        axis.ticks.length=unit(0, "lines"),
        axis.ticks.margin=unit(0, "lines"),
        panel.border=theme_blank(),
        panel.background=function(...)background,
        panel.grid.major=theme_blank(),
        panel.grid.minor=theme_blank(),
        panel.margin=unit(0, "lines"),
        legend.position="none",
        legend.title=theme_blank(),
        legend.background=theme_blank(),
        plot.margin=unit(0*c(-1.5, -1.5, -1.5, -1.5), "lines"))

pdf("plot.pdf", height=7, width=7)
p
dev.off()

我发现在pdf()dev.off()之间编写绘图命令会产生空白文件。将绘图存储在对象中并调用它将起作用。