We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, Thanks for this package! I'm trying to make an animation that consists of multiple plots and I'm wondering if it's supported.
I found this doc, but it looks very outdated since it references magick rather than gifski. https://github.com/thomasp85/gganimate/wiki/Animation-Composition
magick
gifski
I've tried using the girdExtra::arrangeGrob but it doesn't seem to work.
girdExtra::arrangeGrob
library(gridExtra) library(ggpubr) library(ggplot2) # transition, then arrange p1 <- ggplot(mtcars, aes(factor(cyl), mpg)) + geom_boxplot() + transition_states( gear ) p2 <- ggplot(mtcars, aes(qsec, mpg)) + geom_line() + transition_states( gear ) p_full <- arrangeGrob(p1, p2) # arrange, then transition p1 <- ggplot(mtcars, aes(factor(cyl), mpg)) + geom_boxplot() p2 <- ggplot(mtcars, aes(qsec, mpg)) + geom_line() p_full <- arrangeGrob(p1, p2) + transition_states(gear) str(p_full) # NULL
Trying to arrange together gganim objects, I get
gganim
Error in UseMethod("ggplot_gtable") : no applicable method for 'ggplot_gtable' applied to an object of class "gganim_built"
Trying to add transition_states() to gtable object returns NULL
transition_states()
gtable
NULL
Is this functionality supported?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
Thanks for this package!
I'm trying to make an animation that consists of multiple plots and I'm wondering if it's supported.
I found this doc, but it looks very outdated since it references
magick
rather thangifski
. https://github.com/thomasp85/gganimate/wiki/Animation-CompositionI've tried using the
girdExtra::arrangeGrob
but it doesn't seem to work.Trying to arrange together
gganim
objects, I getTrying to add
transition_states()
togtable
object returnsNULL
Is this functionality supported?
The text was updated successfully, but these errors were encountered: