我想从图片创建一部电影。我知道创建图像,但我不知道如何聚在一起。下面是一个mwe。
setwd("...") #work space
x <- matrix(runif(20), ncol = 2)
for(i in 1:nrow(x)){
name = paste('0',i,'plot.png', sep='')
png(name)
plot(x[i, 1], x[i,2], xlim = c(-1.5, 1.5), ylim = c(-1.5, 1.5))
dev.off()
}
此问题与Creating a Movie from a Series of Plots in R非常相似,但链接已过时。并没有解决问题。