R语言可视化学习笔记之ggrepel包

作者简介Introduction

taoyan:伪码农,R语言爱好者,爱开源。

个人博客: https://ytlogos.github.io/


往期回顾

R语言学习笔记之聚类分析

R语言可视化学习笔记之ggpubr包

R语言可视化学习笔记之添加p-value和显著性标记

R语言可视化学习笔记之相关矩阵可视化包ggcorrplot

R语言可视化学习笔记之ggrepel包R语言可视化学习笔记之ggrepel包

library(ggplot2)

#使用数据集mtcars演示

ggplot(mtcars)+ geom_point(aes(wt, mpg), color="red")+geom_text(aes(wt, mpg, label=rownames(mtcars)))+theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包

可以看到可视化效果不是很好。接下来看看包ggrepel的效果。
geom_text_repel()是基于geom_text()

library(ggrepel)

set.seed(42)

ggplot(mtcars)+ geom_point(aes(wt, mpg), color="red")+

geom_text_repel(aes(wt, mpg, label=rownames(mtcars)))+

theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包

geom_label_repel()

geom_label_repel()是基于geom_label(),它将标签置于一个小方框中

set.seed(42)

ggplot(mtcars)+ geom_point(aes(wt, mpg), color="grey", size=5)+

geom_label_repel(aes(wt, mpg, fill=factor(cyl),

label=rownames(mtcars)), fontface="bold", color="white",

box.padding=unit(0.35, "lines"), point.padding=unit(0.5, "lines"),

segment.colour = "grey50")+ theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包

参数

大部分geom_text()的参数都适用于geom_text_repel(),除了以下几个:

  • hjust

  • vjust

  • position

  • check_overlap

ggrepel包为geom_text_repel()与geom_label_repel()提供了特有的参数设置:

  • segment.color:连接点与标签的线段的颜色

  • segment.size:线段的粗细

  • segment.alpha:线段的透明度

  • box.padding:文本框周边填充

  • point.padding:点周围填充

  • arrow:grid:arrow提供的箭头

  • force:强制性将重叠文本散开

  • max.oter:最大迭代次数

  • nudge_x/y:标签开始位置在坐标轴的移动距离

  • direction:允许标签的方向,x、y or both

下面举个栗子来详细了解这些参数的图形效果

set.seed(42)

ggplot(mtcars)+ geom_point(aes(wt, mpg, color=factor(cyl)), size=3)+

geom_text_repel(aes(wt, mpg, color=factor(cyl),

label=rownames(mtcars), angle=ifelse(mtcars$cyl==4, 90, 0)),

size=4, family="Times", fontface="bold",

box.padding=unit(0.5, "lines"), point.padding=unit(1.6, "lines"),

segment.color = "#cccccc", segment.size = 0.5,

arrow = arrow(length=unit(0.01, "npc")),force = 1, max.iter = 3e3,

nudge_x = ifelse(mtcars$cyl==6, 2, 0), nudge_y = ifelse(mtcars$cyl==6, 9, 0))+

scale_color_discrete(name="cyl")+

scale_x_continuous(expand = c(0.5, 0))+

scale_y_continuous(expand = c(0.25, 0))+

theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包

也可以通过设置参数point.padding=NA不对点进行repel

set.seed(42)

mtcars$label <- rownames(mtcars)

ggplot(mtcars, aes(wt, mpg, label=label))+

geom_point(color="red")+ geom_text_repel(point.padding = NA)+

theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包

通过赋值某些label空字符“”来隐藏。

set.seed(42)

mtcars$label <- rownames(mtcars)

mtcars$label[1:15] <- ""

ggplot(mtcars, aes(wt, mpg))+ geom_point(aes(color=factor(cyl)), size=2)+

geom_text_repel(aes(color=factor(cyl), size=hp, label=label),

point.padding = unit(0.25, "lines"), box.padding = unit(0.25, "lines"),

nudge_y = 0.1)+ theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包

将标签控制在特定区域

通过设置参数xlim和ylim来限制label的位置

set.seed(42)

data <- mtcars

mu <- mean(data$wt)

left <- data[data$wt <mu, ]

right <- data[data$wt>=mu, ]

ggplot()+ geom_vline(xintercept = mu)+

geom_point(aes(wt, mpg), data=data)+

geom_text_repel(data=left, aes(wt, mpg, label=rownames(left),

color="Left half"), xlim=c(NA, mu))+

geom_text_repel(data=right, aes(wt, mpg, label=rownames(right),

color="Rigth half"), xlim=c(mu, NA))+ theme_classic(base_size = 16)

R语言可视化学习笔记之ggrepel包
通过控制参数direction来决定label是左右移动还是上下移动, 默认是both

set.seed(42)

#direction="x" 左右移动

ggplot(mtcars)+

geom_point(aes(wt, mpg), color="red")+

geom_text_repel(aes(wt, mpg, label=rownames(mtcars)), direction="x")+

theme_classic(base_size = 16)+xlim(1, 6)

R语言可视化学习笔记之ggrepel包

#direction="x" 上下移动

ggplot(mtcars)+

geom_point(aes(wt, mpg), color="red")+

geom_text_repel(aes(wt, mpg, label=rownames(mtcars)), direction="y")+

theme_classic(base_size = 16)+xlim(1, 6)

R语言可视化学习笔记之ggrepel包

线图

set.seed(42)

ggplot(Orange, aes(age, circumference, color=Tree))+

geom_line()+

coord_cartesian(xlim=c(min(Orange$age), max(Orange$age)+90))+

geom_text_repel(data=subset(Orange, age==max(age)),

aes(label=paste("Tree", Tree)),size=6, nudge_x = 45, segment.color = NA)+

theme_classic(base_size = 16)+

theme(legend.position = "none")+

labs(title="Orange Trees", x="Age(days)", y="Circumference(mm)")


R语言可视化学习笔记之ggrepel包

SessionInfo

sessionInfo()

## R version 3.4.0 (2017-04-21)

## Platform: x86_64-w64-mingw32/x64 (64-bit)

## Running under: Windows 8.1 x64 (build 9600)

##

## Matrix products: default

##

## locale:

## [1] LC_COLLATE=Chinese (Simplified)_China.936

## [2] LC_CTYPE=Chinese (Simplified)_China.936

## [3] LC_MONETARY=Chinese (Simplified)_China.936

## [4] LC_NUMERIC=C

## [5] LC_TIME=Chinese (Simplified)_China.936

##

## attached base packages:

## [1] stats graphics grDevices utils datasets methods base

##

## other attached packages:

## [1] ggrepel_0.6.5 ggplot2_2.2.1

##

## loaded via a namespace (and not attached):

## [1] Rcpp_0.12.11 digest_0.6.12 rprojroot_1.2 plyr_1.8.4

## [5] grid_3.4.0 gtable_0.2.0 backports_1.1.0 magrittr_1.5

## [9] evaluate_0.10 scales_0.4.1 rlang_0.1.1 stringi_1.1.5

## [13] lazyeval_0.2.0 rmarkdown_1.5 labeling_0.3 tools_3.4.0

## [17] stringr_1.2.0 munsell_0.4.3 yaml_2.1.14 compiler_3.4.0

## [21] colorspace_1.3-2 htmltools_0.3.6 knitr_1.16 tibble_1.3.3



 往期精彩内容整理合集 

2017年R语言发展报告(国内)

R语言中文社区历史文章整理(作者篇)

R语言中文社区历史文章整理(类型篇)

R语言可视化学习笔记之ggrepel包

公众号后台回复关键字即可学习

回复 R                  R语言快速入门及数据挖掘 
回复 Kaggle案例  Kaggle十大案例精讲(连载中)
回复 文本挖掘      手把手教你做文本挖掘
回复 可视化          R语言可视化在商务场景中的应用 
回复 大数据         大数据系列免费**** 
回复 量化投资      张丹教你如何用R语言量化投资 
回复 用户画像      京东大数据,揭秘用户画像
回复 数据挖掘     常用数据挖掘算法原理解释与应用
回复 机器学习     人工智能系列之机器学习与实践
回复 爬虫            R语言爬虫实战案例分享

分类:

技术点:

相关文章: