ggplot2坡度图

之前见过坡度图,但是不知道怎么画。今天稍微看了一下就搞定了!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
rm(list = ls())
library(ggplot2)
library(ggsci)

df = data.frame(cat = rep(c(1,2), each = 10),
value = c(1:10,6:15),
c = 1:10,
d = 6:15,
e= letters[1:10])
ggplot(df, aes(cat, value)) +
geom_vline(xintercept = 1:2,linetype = 'dashed') +
geom_point(aes(color = e),size = 2) +
geom_segment(aes(x = 1, xend = 2,
y = c, yend = d, color = e),
size = 1) +
geom_hline(yintercept = 16, color = 'white') +
scale_y_continuous(breaks = seq(-1,15,2)) +
scale_x_discrete(limit = c(1,2)) +
scale_color_aaas() +
labs(x = '',y = '') +
theme_bw() +
theme(legend.position = 'none')

交流请联系:

💌lixiang117423@gmail.com

💌lixiang117423@foxmail.com


ggplot2坡度图
https://lixiang117423.github.io/article/b7629aa1/
作者
小蓝哥
发布于
2020年12月30日
许可协议