91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

罗田县| 鱼台县| 吉安市| 吉木乃县| 太仓市| 武安市| 尚志市| 龙江县| 卢湾区| 榆林市| 琼海市| 苏州市| 安宁市| 开化县| 兴文县| 宝坻区| 肇源县| 海丰县| 蒲城县| 句容市| 安阳县| 荥经县| 涪陵区| 泸州市| 璧山县| 汝城县| 许昌市| 德惠市| 扬州市| 黔东| 贵港市| 宁津县| 曲阳县| 中阳县| 子洲县| 固始县| 花莲市| 西充县| 陵川县| 金堂县| 玛沁县|