中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

R語言怎么使用gganimate創建可視化動圖

發布時間:2022-05-12 11:23:07 來源:億速云 閱讀:223 作者:iii 欄目:開發技術

這篇“R語言怎么使用gganimate創建可視化動圖”文章的知識點大部分人都不太理解,所以小編給大家總結了以下內容,內容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“R語言怎么使用gganimate創建可視化動圖”文章吧。

加載R包,數據

#R包安裝
install.packages("devtools")
library(devtools)    
install_github("thomasp85/gganimate")
install.packages("gapminder")
#加載
library(gganimate)
library(gapminder)
#查看數據
head(gapminder)
# A tibble: 6 x 6
  country     continent  year lifeExp      pop gdpPercap
  <fct>       <fct>     <int>   <dbl>    <int>     <dbl>
1 Afghanistan Asia       1952    28.8  8425333      779.
2 Afghanistan Asia       1957    30.3  9240934      821.
3 Afghanistan Asia       1962    32.0 10267083      853.
4 Afghanistan Asia       1967    34.0 11537966      836.
5 Afghanistan Asia       1972    36.1 13079460      740.
6 Afghanistan Asia       1977    38.4 14880372      786.

數據集包括全球主要國家在1952-2007年的人均GDP增長、預期壽命以及人口增長的數據 。

ggplot2繪制

使用ggplot2繪制

theme_set(theme_bw())
p <- ggplot(gapminder,
  aes(x = gdpPercap, y=lifeExp, size = pop, colour = country)) +
  geom_point(show.legend = FALSE, alpha = 0.7) +
  scale_color_viridis_d() +
  scale_size(range = c(2, 12)) +
  scale_x_log10() +
  labs(x = "GDP per capita", y = "Life expectancy")
p

R語言怎么使用gganimate創建可視化動圖

gganimate 動態

1. transition_time() 核心函數,添加動態

p + transition_time(year) +
  labs(title = "Year: {frame_time}")

R語言怎么使用gganimate創建可視化動圖

2 按需設置

1)添加小尾巴

p + transition_time(year) +
  labs(title = "Year: {frame_time}") +
  shadow_wake(wake_length = 0.1, alpha = FALSE)

R語言怎么使用gganimate創建可視化動圖

2)原數據做背景

p + transition_time(year) +
  labs(title = "Year: {frame_time}") +
  shadow_mark(alpha = 0.3, size = 0.5)

R語言怎么使用gganimate創建可視化動圖

以上就是關于“R語言怎么使用gganimate創建可視化動圖”這篇文章的內容,相信大家都有了一定的了解,希望小編分享的內容對大家有幫助,若想了解更多相關的知識內容,請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

青海省| 大厂| 聂拉木县| 苏尼特右旗| 新泰市| 德清县| 门源| 九龙县| 雅安市| 四子王旗| 阜城县| 江北区| 招远市| 新晃| 云和县| 大理市| 中卫市| 沿河| 定襄县| 雅江县| 石阡县| 阿克| 盐津县| 信宜市| 溧阳市| 郴州市| 江源县| 启东市| 溧水县| 镶黄旗| 故城县| 尤溪县| 汶上县| 墨江| 彝良县| 永顺县| 广灵县| 呼图壁县| 巴东县| 昌黎县| 固始县|