首页 > 解决方案 > 试图安排两个 gganimate 图会引发错误:magick_image_info(image) 中的错误:rsession.exe:几何参数无效

问题描述

我正在尝试并排安排 gganimate 情节。所有代码都执行,但是当我调用生成的 gif 时,出现以下错误:

Error in magick_image_info(image) : 
  rsession.exe: Invalid geometry argument

搜索那个错误,我在谷歌上没有得到任何结果。

我无法将一个完整的可重现示例拼凑在一起,因为两个动画的 df 很大。下面是我用来尝试将两个动画排列在一起的代码。请注意,两个单独的动画都可以单独运行。

#load libraries
library('ggplot')
library('gganimate')
library('magick')

#create the first animation
a <- ggplot(df, aes(...)) +
... #rest of ggplot call
 transition_time(year)
#create the second animation
a2 <- ggplot(df, aes(...)) +
... #rest of ggplot call
transition_reveal(year)

#Render the animations
#The value of of length(unique(df$year)) is the same across both calls
anim1 <- animate(a, nframes = length(unique(df$year)), fps = 3)
anim2 <- animate(a2, nframes = length(unique(df$year)), fps = 3)

#Convert the gifs to magick objects
anim1_magic <- image_read(anim1)
anim2_magic <- image_read(anim2)

#Combine the magick objects into a single gif
#This code completes without an error
anim1_2 <- image_append(c(anim1_magic[1], anim2_magic[1]), stack = F)
for(i in 2:length(unique(berk_records$year)) - 12) {
  combined <- image_append(c(anim1_magic[i], anim2_magic[i]))
  anim1_2 <- c(anim1_2, combined)
}

#display the combined animation
anim1_2

抛出错误:

Error in magick_image_info(image) : 
  rsession.exe: Invalid geometry argument

如果有帮助,我可以尝试dput一些数据,但如果有人能看到这里的问题,那将非常感激。

标签: rrmagickgganimate

解决方案


推荐阅读