Created
April 13, 2020 05:55
-
-
Save djnavarro/7a3d970372631e9443c108d9e2fe905d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(flametree) | |
library(ggplot2) | |
library(gganimate) | |
dat <- flametree_grow(time = 13) | |
pic <- ggplot( | |
data = dat, | |
mapping = aes( | |
x = coord_x, | |
y = coord_y, | |
color = seg_col, | |
group = id_path | |
)) + | |
geom_line(show.legend = FALSE, size = 1) + | |
theme_void() + | |
scale_color_viridis_c() | |
anim <- pic + | |
transition_time(time = id_path) + | |
shadow_mark() | |
anim_save("~/Desktop/growth.gif", anim) |
Author
djnavarro
commented
Apr 13, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment