J'ai quatre parcelles animées avec le même nombre d'images, dont je veux trois empilées et la quatrième à droite des trois animations empilées. Normalement, j'utiliserais quelque chose comme grid.arrange, mais cela ne semble pas fonctionner avec gganimate.
J'ai obtenu le morceau de code suivant basé sur le code d'ici: https://github.com/thomasp85/gganimate/wiki/Animation-Composition
a_mgif <- image_read(a_gif)
b_mgif <- image_read(b_gif)
c_mgif <- image_read(c_gif)
d_mgif <- image_read(d_gif)
new_gif <- image_append(c(a_mgif[1], b_mgif[1], c_mgif[1], d_mgif[1]), stack = TRUE)
for(i in 2:100){
combined <- image_append(c(a_mgif[i], b_mgif[i], c_mgif[i], d_mgif[i]), stack = TRUE)
new_gif <- c(new_gif, combined)
}
magick::image_write(new_gif, path="animation.1.gif")
Cela fonctionne bien et produit les quatre tracés animés empilés. J'ai essayé de le modifier pour avoir le quatrième graphique à droite des trois premiers graphiques empilés comme suit:
new_gif.1 <- image_append(c(a_mgif[1], b_mgif[1], c_mgif[1]), stack = TRUE)
new_gif.2 <- image_append(c(new_gif.1, d_mgif[1]), stack = FALSE)
for(i in 2:100){
combined.1 <- image_append(c(a_mgif[i], b_mgif[i], c_mgif[i]), stack = TRUE)
combined.2 <- image_append(c(combined.1, d_mgif[i]), stack = FALSE)
new_gif.2 <- c(new_gif.2,combined.2)
}
magick::image_write(new_gif.2, path="animation.2.gif")
Cela semble fonctionner, jusqu'au moment d'écrire le fichier. Il faut une éternité pour écrire le fichier, je l'ai laissé tourner pendant des heures et il ne s'est toujours pas terminé, tandis que la première version où ils sont tous empilés est écrite en une minute, donc clairement quelque chose ne va pas. Ce sont exactement les mêmes données/graphiques dans les deux exemples. Des idées sur ce qui ne va pas ici?
Ce qui a fonctionné pour moi a été d’envelopper le image_append
appelle à image_flatten
. J'ai également d'abord combiné img1 et img4 horizontalement, puis j'ai empilé cela avec img2 et img3.
Ici, je n'ai recyclé que les deux animations de l'exemple, mais cette solution devrait également fonctionner avec quatre animations indépendantes - au moins pour moi, sur R4.0 avec ImageMagick 6.9.10.23 et magick_2.3, bien que cela prenne environ 3 minutes et peut-être 630 Mo de stockage temporaire:
library(dplyr)
library(ggplot2)
library(magick)
library(gganimate)
A <- rnorm(100,50,10)
B <- rnorm(100,50,10)
DV <- c(A,B)
IV <- rep(c("A","B"), each=100)
sims <- rep(rep(1:10, each=10), 2)
df <- data.frame(sims, IV, DV)
means_df <- df %>%
group_by(sims,IV) %>%
summarize(means=mean(DV),
sem = sd(DV)/sqrt(length(DV)))
stats_df <- df %>%
group_by(sims) %>%
summarize(ts = t.test(DV~IV,var.equal=TRUE)$statistic)
a <- ggplot(means_df, aes(x = IV,y = means, fill = IV)) +
geom_bar(stat = "identity") +
geom_point(aes(x = IV, y = DV), data = df, alpha = .25) +
geom_errorbar(aes(ymin = means - sem, ymax = means + sem), width = .2) +
theme_classic() +
transition_states(
states = sims,
transition_length = 2,
state_length = 1
) +
enter_fade() +
exit_shrink() +
ease_aes('sine-in-out')
a_gif <- animate(a, width = 240, height = 240)
b <- ggplot(stats_df, aes(x = ts))+
geom_vline(aes(xintercept = ts, frame = sims))+
geom_line(aes(x=x,y=y),
data = data.frame(x = seq(-5,5, .1),
y = dt(seq(-5,5, .1), df = 18))) +
theme_classic() +
ylab("density") +
xlab("t value") +
transition_states(
states = sims,
transition_length = 2,
state_length = 1
) +
enter_fade() +
exit_shrink() +
ease_aes('sine-in-out')
b_gif <- animate(b, width = 240, height = 240)
c_gif <- animate(b, width = 240, height = 240)
d_gif <- animate(a, width = 240, height = 240)
i=1
combined <- image_append(c(a_gif[i], d_gif[i]))
new_gif <- image_append(c(image_flatten(combined),
b_gif[i], c_gif[i]), stack=TRUE)
for(i in 2:100){
combined <- image_append(c(a_gif[i], d_gif[i]))
fullcombined <- image_append(c(image_flatten(combined),
b_gif[i], c_gif[i]), stack=TRUE)
new_gif <- c(new_gif, fullcombined)
}
image_write(new_gif, format="gif", path="animation.2.gif")
Edit: Alternative Alternativement, vous pouvez utiliser cowplot
pour organiser les tracés et générer les images individuelles en boucle, puis utiliser gifski
pour faire l'animation; qui est encore plus flexible en termes de placement d'image, puisque vous pouvez ajouter des coordonnées à draw_image
(voir les exemples cowplot
correspondants). Voici un exemple de grille simple:
library(dplyr)
library(ggplot2)
library(magick)
library(gganimate)
library(cowplot)
library(gifski)
A <- rnorm(100,50,10)
B <- rnorm(100,50,10)
DV <- c(A,B)
IV <- rep(c("A","B"), each=100)
sims <- rep(rep(1:10, each=10), 2)
df <- data.frame(sims, IV, DV)
means_df <- df %>%
group_by(sims,IV) %>%
summarize(means=mean(DV),
sem = sd(DV)/sqrt(length(DV)))
stats_df <- df %>%
group_by(sims) %>%
summarize(ts = t.test(DV~IV,var.equal=TRUE)$statistic)
a <- ggplot(means_df, aes(x = IV,y = means, fill = IV)) +
geom_bar(stat = "identity") +
geom_point(aes(x = IV, y = DV), data = df, alpha = .25) +
geom_errorbar(aes(ymin = means - sem, ymax = means + sem), width = .2) +
theme_classic() +
transition_states(
states = sims,
transition_length = 2,
state_length = 1
) +
enter_fade() +
exit_shrink() +
ease_aes('sine-in-out')
a_gif <- animate(a, width = 240, height = 240)
b <- ggplot(stats_df, aes(x = ts))+
geom_vline(aes(xintercept = ts, frame = sims))+
geom_line(aes(x=x,y=y),
data = data.frame(x = seq(-5,5, .1),
y = dt(seq(-5,5, .1), df = 18))) +
theme_classic() +
ylab("density") +
xlab("t value") +
transition_states(
states = sims,
transition_length = 2,
state_length = 1
) +
enter_fade() +
exit_shrink() +
ease_aes('sine-in-out')
b_gif <- animate(b, width = 240, height = 240)
c_gif <- animate(b, width = 240, height = 240)
d_gif <- animate(a, width = 240, height = 240)
tdir <- tempdir()
for(i in 1:100){
new_gif <- plot_grid(ggdraw() + draw_image(a_gif[i], scale = 0.9),
ggdraw() + draw_image(d_gif[i], scale = 0.9),
ggdraw() + draw_image(b_gif[i], scale = 0.9),
ggdraw(),
ggdraw() + draw_image(c_gif[i], scale = 0.9),
ncol=2)
ggsave(
filename = file.path(tdir, paste0("out_", sprintf("%03d", i), ".png")),
plot = new_gif, width = 2.4, height = 3.6, device = "png")
}
png_files <- sort(list.files(path = tdir, pattern = "out_", full.names = TRUE))
gifski(png_files, gif_file = "out.gif", width = 480, height = 720, delay = .1,
progress = TRUE)