ggplot2画箭头

突然有个用ggplot2画箭头的需求,So,搞它!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
library(tidyverse)

data("iris")

pca = prcomp(iris[,1:4])

score = pca[["x"]] %>% as.data.frame()
loading = pca[["rotation"]] %>% as.data.frame()

ggplot(score, aes(PC1, PC2)) +
geom_hline(yintercept = 0, linetype = 'dashed') +
geom_vline(xintercept = 0, linetype = 'dashed') +
geom_point(aes(color = iris$Species)) +
geom_segment(data = loading,
aes(x = PC1, y = PC2, xend = 0, yend = 0),
arrow = arrow(length=unit(0.20,"cm"),
ends="first", type = "closed"),
size = 0.5) +
geom_text(data = loading,
aes(x = PC1, y = PC2, label = rownames(loading)),
size = 3) +
theme_bw()

交流请联系:

💌lixiang117423@gmail.com

💌lixiang117423@foxmail.com


ggplot2画箭头
https://lixiang117423.github.io/article/f2d7bee6/
作者
小蓝哥
发布于
2020年12月16日
许可协议