【R】ggstream
2020年12月11日
1. はじめに
ggstream
は、ggplot
にて簡単にstreamgraph/plotを描画するパッケージです。
2. インストール
Githubからインストールします。
remotes::install_github("davidsjoberg/ggstream")
3. 使ってみる
例えば、こんな感じ。
library(tidyverse) library(ggplot2) library(ggstream) ggplot(blockbusters, aes(year, box_office, fill = genre)) + geom_stream()+ labs(title = "Box office per genre 1977 - 2019") + theme_linedraw() + scale_fill_brewer(palette="Dark2")
4. さいごに
だんだんggplot
の拡張パッケージが増えてきて分からなくなってきた。。。一回、整理するか。