R绘制坡度图(Slope Chart)
坡度图(Slope Chart)可以高效地可视化同一个核心指标随着时间推移的变化情况。目前,还没有现成的构建函数来绘制坡度图。
下面的代码可以作为一个抛砖引玉的例子,说明如何处理这个问题。
# 注意数据为网络数据(github),可能有的时候需要通过代理才能有效连接。
library(ggplot2)
library(scales)
theme_set(theme_classic())
# prep data
df <- read.csv("https://raw.githubusercontent.com/selva86/datasets/master/gdppercap.csv")
colnames(df) <- c("continent", "1952", "1957")