从函数返回图形而不绘制图形

时间:2018-12-01 08:51:23

标签: r cowplot

我想编写返回图形的函数,但不应绘制图形。它只应在我要求时绘制图形。

这是MWE。

graph_functions <- function(x) {
  plot(1:length(x), x)
  points(1:length(x), x^2)
  t <- recordPlot()
  return(t)
}

answer <- graph_functions(1:10)

library(cowplot)
plot_grid(answer, answer)

在上面的代码中,当我第一次通过调用graph_functions(1:10)计算答案时,我不希望它绘制图形。我只希望它在使用plot_grid()时绘制图形。

2 个答案:

答案 0 :(得分:2)

graph_functions<- function(x) {
  plot(1:length(x),x)
  points(1:length(x),x^2)
  t<- recordPlot()
  return(t)
}
answer <- c(1:10)
library(cowplot)
plot_grid(graph_functions(answer),graph_functions(answer))

您可以将函数放在plot_grid()函数内部,然后将参数存储在answer变量中。

答案 1 :(得分:1)

您可以打开一个空设备并对其进行渲染。请注意,如果您将Cowplot与base-R图形一起使用,则应使用devtools::install_github("wilkelab/cowplot")升级到开发版本。它提供了对base-R图形的改进处理。

graph_functions <- function(x) {
  cur_dev <- grDevices::dev.cur()   # store current device
  pdf(NULL, width = 6, height = 6)  # open null device
  grDevices::dev.control("enable")  # turn on recording for the null device
  null_dev <- grDevices::dev.cur()  # store null device

  # make sure we always clean up properly, even if something causes an error
  on.exit({
    grDevices::dev.off(null_dev)
    if (cur_dev > 1) grDevices::dev.set(cur_dev) # only set cur device if not null device
  })

  # plot
  plot(1:length(x), x)
  points(1:length(x), x^2)
  recordPlot()
}

answer1 <- graph_functions(1:10)
answer2 <- graph_functions(1:20)
cowplot::plot_grid(answer1, answer2)

reprex package(v0.2.1)于2018-12-04创建