-
ridgeline plotR 2020. 2. 23. 17:51
# ridgeline 그래프는 시간의 흐름에 따른 분포의 추세를 보여줄 때 유용한 그래프이다.
install.packages("tidyverse")
install.packages("gapminder")
install.packages("ggridges")
library(tidyverse)
library(gapminder)
library(ggridges)# 연도별 기대수명의 현황
gapminder %>%
ggplot2::ggplot(aes(x = lifeExp, y = as.factor(year), fill = as.factor(year))) +
ggridges::geom_density_ridges(alpha = 0.5) +
ggplot2::theme_classic() +
ggplot2::labs(title = "Ridge Line Graph",
x = "Life Expection",
y = "Year") +
ggplot2::theme(plot.title = element_text(size = 15, face = "bold", hjust = 0.5),
axis.title.x = element_text(face = "bold"),
axis.title.y = element_text(face = "bold")) +
ggplot2::guides(fill = guide_legend(title = "Year"))'R' 카테고리의 다른 글
scale_fill_brewer() 관련 사이트 (0) 2020.06.30 KoNLP 설치할 때 오류 해결 (14) 2020.03.23 sina plot (0) 2020.02.23 EDA를 위한 유용한 패키지 : DataExplorer (0) 2020.01.07 데이터가 알려주는 소비자의 마음 10가지 (0) 2019.12.03