ggplot2优雅的自定义轴文本颜色
❝今天来主要介绍如何在不引入外部几何对象的前提下在图形的原有的基础上「自定义修改轴文本颜色」,也许恰好您正好有此特殊需求,希望对各位观众老爷有所帮助;下面来看具体案例;
❞
❝❞
有需要的观众老爷欢迎加入小编的VIP群
,目前已经上传「2021-2022两年公众号文档数据+代码约180篇左右」包含付费文档,扫描文末尾二维码加小编微信「付费99元」后邀请进群,「由于群名额有限人满之后将不在添加新成员」,有需要的请尽早加入,早进早享受;「一定让你感受到物超所值」,加入小编的VIP如果你有一些让我感兴趣的图表提供示例数据小编若有时间会写成推文发送
加载R包
library(tidyverse)
数据清洗
data1 <- mtcars %>% head(6) %>%
mutate_if(is.numeric, function(x) x+10) %>%
log10() %>% as.data.frame() %>%
rownames_to_column("type") %>%
pivot_longer(-type) %>%
mutate(type=factor(type)) %>% arrange(type)
定义标记角度
empty_bar <- 0
data1$id <- seq(1,nrow(data1))
label_data <- data1
number_of_bar <- nrow(label_data)
angle <- 90 - 360 * (label_data$id-0.5) /number_of_bar
label_data$hjust<-ifelse( angle < -90, 1, 0)
label_data$angle<-ifelse(angle < -90, angle+180, angle)
定义颜色
colors <-c("#FED439FF","#709AE1FF",
"#D5E4A2FF","#197EC0FF","#F05C3BFF","#46732EFF",
"#71D0F5FF","#370335FF","#075149FF","#C80813FF","#91331FFF",
"#1A9993FF","#FD8CC1FF")
数据可视化
ggplot(data1,aes(id,value+5,fill=type))+
geom_bar(stat="identity",alpha=0.8)+
scale_fill_manual(values = colors)+
labs(x=NULL,y=NULL)+
ylim(-7,14)+
coord_polar(start =0)+
theme_void()+
theme(
legend.text = element_text(color="black"),
legend.title=element_blank(),
legend.spacing.x=unit(0.2,'cm'),
legend.key=element_blank(),
legend.key.width=unit(0.3,'cm'),
legend.key.height=unit(0.3,'cm'),
legend.position=c(0.5,0.5))+
# 添加标签
geom_text(data=label_data,aes(x=id, y=value+5.5,label=type,hjust=hjust,color=name),
fontface="plain",size=2.5,show.legend = F,
angle= label_data$angle,inherit.aes = FALSE)+
scale_color_manual(values = colors)+
# 添加外圈
geom_segment(aes(x=0, y=14,xend=66.5,yend =14),size=1.5,color="#3B9AB2",
arrow = arrow(length = unit(0, "npc"),type="closed"))+
# 添加内圈
geom_segment(aes(x=0, y=-2,xend=66.5,yend =-2),size=0.5,color="#3B9AB2",
arrow = arrow(length = unit(0, "npc"),type="closed"))+
geom_segment(aes(x=0, y=-0.1,xend=66.5,yend =-0.1),size=0.5,color="grey",
arrow = arrow(length = unit(0, "npc"),type="closed"))
❝可以看到此处我们使用的「geom_text」在图形内部添加文本并定义颜色,那如果我们要在图形外部修改轴文本颜色该如何操作,当然有更加简单的方法请往下看
❞
构建数据
df <- data1 %>% arrange(id) %>%
mutate(id=as.character(id)) %>% head(30)
df$id <- factor(df$id,levels = df$id)
基础绘图
p <- df %>% ggplot(.,aes(id,value+5,fill=type))+
geom_bar(stat="identity",alpha=0.8)+
scale_fill_manual(values =c("#EDB749","#3CB2EC","#9C8D58"))+
scale_y_continuous(expand = expansion(0))+
coord_flip()+
theme_test()+
labs(x=NULL,y=NULL)+
theme(
axis.text.y=element_text(size=12),
legend.text = element_text(color="black"),
legend.title=element_blank(),
legend.spacing.x=unit(0.2,'cm'),
legend.key=element_blank(),
legend.key.width=unit(0.3,'cm'),
legend.key.height=unit(0.3,'cm'),
legend.position="top")
统一个数
x_cols <- rep(c("#EDB749","#3CB2EC","#9C8D58","#4A452A"),each=11)
p + theme(axis.text.y = element_text(colour=x_cols))
可以看到每一组只对应一种颜色,如果我们想自定义任意文本颜色那,继续往下看
自定义个数
x_cols <- rep(c("#EDB749","#4A452A","#3CB2EC","#9C8D58"),time=c(6,5,11,8))
p + theme(axis.text.y = element_text(colour=x_cols))
可以看到引入「time」参数控制每一个颜色出现的次数
❝Warning message: Vectorized input to
❞element_text()
is not officially supported. Results may be unexpected or may change in future versions of ggplot2.
数据获取
❝本节介绍到此结束,有需要获取本篇数据的欢迎转发此文档到朋友圈,30分钟后公众号后台截图给小编,添加小编微信时「请备注一下个人信息及来意以便高效处理」,「当然更加推荐加入小编的VIP交流群」,绝让你体会到物超所值
❞
小编微信
关注下方公众号下回更新不迷路
往期推荐