├── .Rbuildignore ├── .github ├── .gitignore ├── 404.md ├── CODE_OF_CONDUCT.md └── workflows │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R ├── anim_save.R ├── animate.R ├── animation_store.R ├── ease-aes.R ├── gganim.R ├── gganimate-ggproto.R ├── gganimate-package.r ├── ggplot2_reimpl.R ├── group_column.R ├── import-standalone-obj-type.R ├── import-standalone-types-check.R ├── layer_type.R ├── match_shapes.R ├── plot-build.R ├── post_process.R ├── renderers.R ├── scene.R ├── shadow-.R ├── shadow-mark.R ├── shadow-null.R ├── shadow-trail.R ├── shadow-wake.R ├── transformr.R ├── transition-.R ├── transition-components.R ├── transition-events.R ├── transition-filter.R ├── transition-layers.R ├── transition-manual.R ├── transition-null.R ├── transition-states.R ├── transition-time.R ├── transition_reveal.R ├── transmute-.R ├── transmute-enter.R ├── transmute-exit.R ├── transmuters.R ├── tween_before_stat.R ├── view-.R ├── view-follow.R ├── view-static.R ├── view-step-manual.R ├── view-step.R ├── view-zoom-manual.R ├── view-zoom.R └── zzz.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── codecov.yml ├── cran-comments.md ├── gganimate.Rproj ├── man ├── anim_save.Rd ├── animate.Rd ├── ease_aes.Rd ├── enter_exit.Rd ├── figures │ ├── README-unnamed-chunk-2-1.gif │ ├── README-unnamed-chunk-4-1.gif │ ├── logo.png │ └── logo.svg ├── frame_vars.Rd ├── gganimate-ggproto.Rd ├── gganimate-package.Rd ├── gganimate.Rd ├── gif_file.Rd ├── last_animation.Rd ├── layer_type.Rd ├── renderers.Rd ├── save_animation.Rd ├── shadow_mark.Rd ├── shadow_null.Rd ├── shadow_trail.Rd ├── shadow_wake.Rd ├── split_animation.Rd ├── sprite_file.Rd ├── transition_components.Rd ├── transition_events.Rd ├── transition_filter.Rd ├── transition_layers.Rd ├── transition_manual.Rd ├── transition_null.Rd ├── transition_reveal.Rd ├── transition_states.Rd ├── transition_time.Rd ├── tween_before_stat.Rd ├── video_file.Rd ├── view_follow.Rd ├── view_static.Rd ├── view_step.Rd └── view_zoom.Rd ├── pkgdown ├── assets │ └── images │ │ └── personifyr.jpg └── favicon │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-180x180.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-76x76.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── revdep ├── README.md ├── cran.md ├── failures.md └── problems.md ├── tests ├── testthat.R └── testthat │ ├── test-anim_save.R │ └── test-transition-states.R └── vignettes ├── .gitignore ├── extra └── talks.Rmd └── gganimate.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/404.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.github/404.md -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.github/workflows/pr-commands.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.github/workflows/pr-commands.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2023 2 | COPYRIGHT HOLDER: gganimate authors 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/anim_save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/anim_save.R -------------------------------------------------------------------------------- /R/animate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/animate.R -------------------------------------------------------------------------------- /R/animation_store.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/animation_store.R -------------------------------------------------------------------------------- /R/ease-aes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/ease-aes.R -------------------------------------------------------------------------------- /R/gganim.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/gganim.R -------------------------------------------------------------------------------- /R/gganimate-ggproto.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/gganimate-ggproto.R -------------------------------------------------------------------------------- /R/gganimate-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/gganimate-package.r -------------------------------------------------------------------------------- /R/ggplot2_reimpl.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/ggplot2_reimpl.R -------------------------------------------------------------------------------- /R/group_column.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/group_column.R -------------------------------------------------------------------------------- /R/import-standalone-obj-type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/import-standalone-obj-type.R -------------------------------------------------------------------------------- /R/import-standalone-types-check.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/import-standalone-types-check.R -------------------------------------------------------------------------------- /R/layer_type.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/layer_type.R -------------------------------------------------------------------------------- /R/match_shapes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/match_shapes.R -------------------------------------------------------------------------------- /R/plot-build.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/plot-build.R -------------------------------------------------------------------------------- /R/post_process.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/post_process.R -------------------------------------------------------------------------------- /R/renderers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/renderers.R -------------------------------------------------------------------------------- /R/scene.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/scene.R -------------------------------------------------------------------------------- /R/shadow-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/shadow-.R -------------------------------------------------------------------------------- /R/shadow-mark.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/shadow-mark.R -------------------------------------------------------------------------------- /R/shadow-null.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/shadow-null.R -------------------------------------------------------------------------------- /R/shadow-trail.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/shadow-trail.R -------------------------------------------------------------------------------- /R/shadow-wake.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/shadow-wake.R -------------------------------------------------------------------------------- /R/transformr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transformr.R -------------------------------------------------------------------------------- /R/transition-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-.R -------------------------------------------------------------------------------- /R/transition-components.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-components.R -------------------------------------------------------------------------------- /R/transition-events.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-events.R -------------------------------------------------------------------------------- /R/transition-filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-filter.R -------------------------------------------------------------------------------- /R/transition-layers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-layers.R -------------------------------------------------------------------------------- /R/transition-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-manual.R -------------------------------------------------------------------------------- /R/transition-null.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-null.R -------------------------------------------------------------------------------- /R/transition-states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-states.R -------------------------------------------------------------------------------- /R/transition-time.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition-time.R -------------------------------------------------------------------------------- /R/transition_reveal.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transition_reveal.R -------------------------------------------------------------------------------- /R/transmute-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transmute-.R -------------------------------------------------------------------------------- /R/transmute-enter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transmute-enter.R -------------------------------------------------------------------------------- /R/transmute-exit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transmute-exit.R -------------------------------------------------------------------------------- /R/transmuters.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/transmuters.R -------------------------------------------------------------------------------- /R/tween_before_stat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/tween_before_stat.R -------------------------------------------------------------------------------- /R/view-.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-.R -------------------------------------------------------------------------------- /R/view-follow.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-follow.R -------------------------------------------------------------------------------- /R/view-static.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-static.R -------------------------------------------------------------------------------- /R/view-step-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-step-manual.R -------------------------------------------------------------------------------- /R/view-step.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-step.R -------------------------------------------------------------------------------- /R/view-zoom-manual.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-zoom-manual.R -------------------------------------------------------------------------------- /R/view-zoom.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/view-zoom.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/README.md -------------------------------------------------------------------------------- /_pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/_pkgdown.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- 1 | Patch release with further fixes to ggplot2 v4 2 | -------------------------------------------------------------------------------- /gganimate.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/gganimate.Rproj -------------------------------------------------------------------------------- /man/anim_save.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/anim_save.Rd -------------------------------------------------------------------------------- /man/animate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/animate.Rd -------------------------------------------------------------------------------- /man/ease_aes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/ease_aes.Rd -------------------------------------------------------------------------------- /man/enter_exit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/enter_exit.Rd -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-2-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/figures/README-unnamed-chunk-2-1.gif -------------------------------------------------------------------------------- /man/figures/README-unnamed-chunk-4-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/figures/README-unnamed-chunk-4-1.gif -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/frame_vars.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/frame_vars.Rd -------------------------------------------------------------------------------- /man/gganimate-ggproto.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/gganimate-ggproto.Rd -------------------------------------------------------------------------------- /man/gganimate-package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/gganimate-package.Rd -------------------------------------------------------------------------------- /man/gganimate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/gganimate.Rd -------------------------------------------------------------------------------- /man/gif_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/gif_file.Rd -------------------------------------------------------------------------------- /man/last_animation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/last_animation.Rd -------------------------------------------------------------------------------- /man/layer_type.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/layer_type.Rd -------------------------------------------------------------------------------- /man/renderers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/renderers.Rd -------------------------------------------------------------------------------- /man/save_animation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/save_animation.Rd -------------------------------------------------------------------------------- /man/shadow_mark.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/shadow_mark.Rd -------------------------------------------------------------------------------- /man/shadow_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/shadow_null.Rd -------------------------------------------------------------------------------- /man/shadow_trail.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/shadow_trail.Rd -------------------------------------------------------------------------------- /man/shadow_wake.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/shadow_wake.Rd -------------------------------------------------------------------------------- /man/split_animation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/split_animation.Rd -------------------------------------------------------------------------------- /man/sprite_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/sprite_file.Rd -------------------------------------------------------------------------------- /man/transition_components.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_components.Rd -------------------------------------------------------------------------------- /man/transition_events.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_events.Rd -------------------------------------------------------------------------------- /man/transition_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_filter.Rd -------------------------------------------------------------------------------- /man/transition_layers.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_layers.Rd -------------------------------------------------------------------------------- /man/transition_manual.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_manual.Rd -------------------------------------------------------------------------------- /man/transition_null.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_null.Rd -------------------------------------------------------------------------------- /man/transition_reveal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_reveal.Rd -------------------------------------------------------------------------------- /man/transition_states.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_states.Rd -------------------------------------------------------------------------------- /man/transition_time.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/transition_time.Rd -------------------------------------------------------------------------------- /man/tween_before_stat.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/tween_before_stat.Rd -------------------------------------------------------------------------------- /man/video_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/video_file.Rd -------------------------------------------------------------------------------- /man/view_follow.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/view_follow.Rd -------------------------------------------------------------------------------- /man/view_static.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/view_static.Rd -------------------------------------------------------------------------------- /man/view_step.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/view_step.Rd -------------------------------------------------------------------------------- /man/view_zoom.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/man/view_zoom.Rd -------------------------------------------------------------------------------- /pkgdown/assets/images/personifyr.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/assets/images/personifyr.jpg -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/apple-touch-icon-180x180.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /pkgdown/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /pkgdown/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/pkgdown/favicon/favicon.ico -------------------------------------------------------------------------------- /revdep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/revdep/README.md -------------------------------------------------------------------------------- /revdep/cran.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/revdep/cran.md -------------------------------------------------------------------------------- /revdep/failures.md: -------------------------------------------------------------------------------- 1 | *Wow, no problems at all. :)* -------------------------------------------------------------------------------- /revdep/problems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/revdep/problems.md -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-anim_save.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/tests/testthat/test-anim_save.R -------------------------------------------------------------------------------- /tests/testthat/test-transition-states.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/tests/testthat/test-transition-states.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/extra/talks.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/vignettes/extra/talks.Rmd -------------------------------------------------------------------------------- /vignettes/gganimate.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thomasp85/gganimate/HEAD/vignettes/gganimate.Rmd --------------------------------------------------------------------------------