- 움직이는 그래프를 만들어보자(gganimation)2023년 05월 29일 10시 02분 04초에 업로드 된 글입니다.작성자: r-code-for-data-analysis
gganimation이란 패키지를 이용하면 움직이는 그래프를 만들어볼 수 있다.
1. 결과 보기
2. 코드 분석
library(gganimate) p <- ggplot(mtcars, aes(factor(cyl), mpg)) + geom_boxplot() + # Here comes the gganimate code transition_states( gear, transition_length = 2, state_length = 1 ) + enter_fade() + exit_shrink() + ease_aes('sine-in-out') anim_save("d:/R/gif/gganima.gif", p) library(gifski) png_files <- list.files("d:/R/gif/", pattern = ".*png$", full.names = TRUE) gifski(png_files, gif_file = "d:/R/gif/animation.gif", width = 800, height = 600, delay = 1)
728x90반응형'데이터 시각화' 카테고리의 다른 글
여러 그래프에 라벨 달기 (egg) (0) 2023.05.30 한정된 데이터로 추정해서 그리는 방법 (ggdensity) (0) 2023.05.29 RSTUDIO로 gps 데이터 3d 시각화하기(rgl) (0) 2023.05.29 그래프에서 하이라이트 적용하기(gghighlight) (0) 2023.05.29 xyz 3열의 데이터를 2d, 3d로 시각화 해보기(plot_ly) (0) 2023.05.29 댓글