4

rgl我使用包为我的数据的每个因子级别制作了 3D 图,并将它们保存为 png。我的数据有 30 个不同的级别,产生了 30 个不同的图像文件。现在我想将这些 png 组合成一个图。

我会这样显示它们:

在此处输入图像描述

以下示例说明了我想做的事情:

library(rgl)
library(png)
library(gridExtra)
library(ggplot2)

## creates a png in the working directory which can be used as an example
example(surface3d)
rgl.snapshot("example.png")
rgl.close()

## imports the png files; in the example, the same file is imported multiple times.
if(exists("png.df")) rm(png.df)
for (i in 1:9) {
  png.i <- readPNG("example.png")

  g <- rasterGrob(png.i, interpolate=TRUE)
  g <- g$raster
  g <- as.vector(g)
  g <- matrix(g, nrow = 256, ncol = 256, dimnames = list(1:256, 1:256))

  df.i <- data.frame(i = rep(row.names(g), dim(g)[2]), j = rep(colnames(g), each = dim(g)[1]), col=as.vector(g))
  df.i$i <- as.numeric(as.character(df.i$i))
  df.i$j <- as.numeric(as.character(df.i$j))
  df.i$col <- as.character(df.i$col)
  df.i$title <- paste ( "Plot", i)

  if(exists("png.df")) {
    png.df <- rbind(png.df, df.i)
  } else {
    png.df <- df.i
  }
}
rm(df.i, g)

## plots the data
pl <- ggplot(png.df, aes( x = i, y = j))
pl <- pl + geom_raster(aes(fill = col)) + scale_fill_identity()
pl <- pl + scale_y_reverse()
pl <- pl + facet_wrap( ~ title)
pl <- pl + coord_equal() + theme_bw() + theme(panel.grid = element_blank(), axis.text = element_blank(), axis.title = element_blank(), axis.ticks= element_blank())
pl

这工作得很好,但速度很慢。真正的 png 具有更高的分辨率,我想绘制 30 个 png,而不仅仅是 9 个,这导致我的机器在很长一段时间内完全没有响应(i7,8GB RAM)。

导入部分运行良好,但生成的数据框非常大(4.5e+07 行),ggplot(可以理解)无法正确处理。

如何以快速有效的方式创建情节?最好使用 R,但也可以使用其他软件。

4

1 回答 1

8

这是使用网格函数grid.rasterxyplot来自lattice的解决方案。我认为这grid.raster具有更快的屏幕渲染速度,因此它是性能的良好候选者。我选择 lattice 是因为它使用面板自定义更容易集成网格功能。

在此处输入图像描述

首先我阅读了所有的 png,使用readPNGfrom pngpackage (类似于你的解决方案)

ll <- list.files(path='c:/temp',patt='compo[0-9].*',full.names=T)
library(png)
imgs <- lapply(ll,function(x){
       as.raster(readPNG(x))  ## no need to convert to a matrix here!
   })

然后我为散点图准备数据:

x = 1:4   ## here 4 because I use  16 plots
y = 1:4
dat <- expand.grid(x,y)

最后我使用xyplot自定义面板功能:

library(lattice)
library(grid)
xyplot(Var2~Var1|rownames(dat),data=dat,layout=c(4,4),
      panel=function(x,y,...){
        lims <- current.panel.limits()
        grid.raster(image =imgs[[panel.number()]],sum(lims$xlim)/2,sum(lims$ylim)/2,
                                      width =diff(lims$xlim),
                                          height=diff(lims$ylim),def='native' )

       })

PS:这就是我所说的catty解决方案。

于 2013-03-05T16:48:15.950 回答