Animation of changing values of map over time using geom_sf and ggplotly does not work
オープン
まだ誰も着手していません。
- 主要言語
- R
- スター
- 2.7k
- フォーク
- 641
- PR マージ指標
- 30日以内にマージされた PR はありません
説明
This is a copy of my Question on StackOverflow.
I try to animate changing values on a map over time using ggplot with geom_sf and ggplotly. In the following example the map does not change over time.
library(sf)
library(tidyverse)
library(plotly)
library("rnaturalearth")
library("rnaturalearthdata")
world <- ne_countries(scale = "medium", returnclass = "sf")
world$year <- 2010
world2 <- world
world2$year <- 2011
world2$pop_est <- 1000000
world3 <- bind_rows(world, world2)
# ggplot(data = world) +
# geom_sf(aes(fill = pop_est))
plt <- ggplot(world3, aes(fill = pop_est, frame = year)) +
geom_sf()
ggplotly(plt)
コントリビューションガイド
はじめの一歩
- issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
- 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
- リポジトリをフォークし、ブランチを切って変更します。
- issue 番号を参照したプルリクエストを送ります。
調査の方向性
Issue にある再現可能な R の例から始め、ggplotly が frame aesthetic を持つ geom_sf レイヤーをどのように扱うかを比較してください。StackOverflow の再現例が参照されている唯一の調査です。完了条件は、マップの変化する pop_est 値が 2010 と 2011 のアニメーションフレーム間で目に見えて更新されることです。
索引モデルが issue の本文から書いたものです。
評価
- 技術スタック
- plotly, r
- 領域
- data-visualization
- issue の種類
- バグ
- 難易度
- 4/5
- 見積もり時間
- 3〜5日
- 活発さ
- 停滞
- 明瞭さ
- 明確に書かれている
- 初心者へのやさしさ
- 35/100