gpt4 book ai didi

r - gganimate::transition_time 导致飞行多边形

转载 作者:行者123 更新时间:2023-12-04 10:09:25 26 4
gpt4 key购买 nike

试图创建一个具有简单特征的动画,本质上是一个区域分布图形式的空间变量的时间序列。

问题是多边形在动画播放时遍布整个情节。

这是一个可重现的示例,部分摘自 https://www.blog.cultureofinsight.com/2017/09/animated-choropleth-maps-in-r/ (使用旧版本的 gganimate

加载包:

library(tidyverse) # dev ggplot version required: devtools::install_github("hadley/ggplot2")
library(sf)
library(readxl)
library(httr)
library(gganimate)

获取和组织数据以获取可重现的示例。
# download the natural earth shapefile we need into your working directory
URL <- "http://www.naturalearthdata.com/http//www.naturalearthdata.com/download/110m/cultural/ne_110m_admin_0_map_units.zip"
temp <- tempfile()
download.file(URL, temp)
unzip(temp)
unlink(temp)

# read in shapefile as an sf object and set the projection
# this will be our base world map for plot sans Antarctica
world <- st_read("ne_110m_admin_0_map_units.shp") %>%
st_transform(crs = "+proj=longlat +datum=WGS84") %>%
filter(!NAME %in% c("Fr. S. Antarctic Lands", "Antarctica"))

# download dataset into your working directory
url <- "https://www.blog.cultureofinsight.com/data/wc.xlsx"
GET(url, write_disk("wc.xlsx", overwrite=TRUE))

# read in our the massive 20 rows of data and get the winner/runner-up variable in 1 column #tidyafdata
# setting factor for winner to show first in the legend
winners <- read_excel("wc.xlsx") %>%
gather(w_l, country, winner:runner_up) %>%
mutate(w_l = factor(w_l, levels = c("winner", "runner_up")))

# merge our world shape file with our main dataset
# this will add the polygon for the appropriate country to each row of our winners dataset
# and remove any countries that haven't won or come 2nd in the WC
wc_geo <- left_join(world, winners, by = c("NAME" = "country")) %>%
st_as_sf() %>%
drop_na(Year)

创建 gganimate 对象:
wc_map <- ggplot() +
geom_sf(data = world, colour = "#ffffff20", fill = "#2d2d2d60", size = .5) +
geom_sf(data = wc_geo, aes(fill = w_l)) +
coord_sf(crs = st_crs(world), datum = NA) +
scale_fill_manual(values = c("#D9A441", "#A8A8A8"), name = NULL, labels = c("Winner", "Runner-Up")) +
theme(legend.position = c(0.9, 1.01), legend.direction = "horizontal", axis.text = element_blank(),
panel.grid.minor = element_blank(), panel.grid.major = element_blank()) +
transition_time(Year)

动画:
animate(wc_map)

这是结果:

Flying countries

最佳答案

这是一个分组问题。你需要明确地对待你的团体。在这种情况下,创建一个 Year 的交互。和 w_l
您可以使用包 rnaturalearth更方便地获取世界/国家 map 。

library(tidyverse) 
library(gganimate)

world <- rnaturalearth::ne_countries( returnclass = 'sf') %>% filter(admin!= 'Antarctica')

url <- "https://www.blog.cultureofinsight.com/data/wc.xlsx"
httr::GET(url, httr::write_disk("wc.xlsx", overwrite=TRUE))

winners <- readxl::read_excel("wc.xlsx") %>%
gather(w_l, country, winner:runner_up) %>%
mutate(w_l = factor(w_l, levels = c("winner", "runner_up")))

wc_geo <- left_join(world, winners, by = c("admin" = "country")) %>%
drop_na(Year)

p <-
ggplot() +
geom_sf(data = world, colour = "#ffffff20", fill = "#2d2d2d60", size = .5) +
geom_sf(data = wc_geo, aes(fill = w_l, group = interaction(w_l, Year))) +
scale_fill_manual(values = c("#D9A441", "#A8A8A8"), name = NULL, labels = c("Winner", "Runner-Up")) +
theme(legend.position = c(0.9, 1.01), legend.direction = "horizontal", axis.text = element_blank(),
panel.grid.minor = element_blank(), panel.grid.major = element_blank())

anim <- p + transition_time(Year)

animate(anim)



创建于 2020-04-24 由 reprex package (v0.3.0)

附言总是同一个国家,不是吗...

关于r - gganimate::transition_time 导致飞行多边形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61399792/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com