本文主要是介绍【转载】ggplot2主题设置,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原文摘自http://www.rpubs.com/lihaoyi/156592
library(ggplot2) #加载ggplot2包
library(gcookbook) #加载本书的数据包
主题theme参数设置
改变字体类型、大小,图例、坐标轴、背景等各种元素,可通过theme()函数来完成
library(ggplot2)
library(grid) #为了使用unit函数
p0 <- ggplot(data = mpg, aes(x = displ, fill = factor(cyl))) + geom_bar(colour = 1, binwidth = 0.2) + labs(title = "plot title")
p0 #基础图
1.1 图片区参数设置
- plot.background: 图片区背景设置
- plot.title: 图片标题设置
- plot.margin: 图片区边缘距离设置
将图片区背景填充色设置为lightblue,边框颜色设置为黑色,宽度设置为3,线型设置为虚线,图标题的字体颜色为黑色,粗体,字体大小30,顶部对齐,同时设置图边沿距离.
p0 + theme(plot.background = element_rect(colour = "black", size = 3, linetype = 4, fill = "lightblue"), plot.title = element_text(colour = "black", face = "bold", size = 30, vjust = 1), plot.margin = unit(c(0.2, 0.2, 0.2, 0.2), "inches"))
1.2 绘图区(轴线围城的区域)参数设置
- panel.background: 绘图区背景色,colour可以设置边框颜色,fill为填充色
- panel.border: 绘图区边框
- panel.grid: 网格线
- panel.grid.major: 主要网格线
- panel.grid.minor: 次要网格线
- panel.grid.major.x: x轴主要网格线
- panel.grid.major.y: y轴主要网格线
- panel.grid.minor.x: x轴次要网格线
- panel.grid.minor.y: y轴次要网格线
p0
p0 + theme(panel.background = element_rect(fill = "lightblue")) #将图片区的背景色设置为lightblue
p0 + theme(panel.background = element_rect(fill = "lightblue", colour = "red", size = 3)) #将图片区的背景色设置为lightblue,边框颜色为红色,边框宽度为3
1.3 坐标轴参数设置
- axis.title: 轴标题
- axis.title.x: x轴标题
- axis.title.y: y轴标题
- axis.text: 轴刻度值
- axis.text.x: x轴刻度值
- axis.text.y: y轴刻度值
- axis.ticks: 轴刻度线
- axis.ticks.x: x轴刻度线
- axis.ticks.y: y轴刻度线
- axis.ticks.length: 轴刻度线长度,负值向里
- axis.ticks.margin: 轴刻度线与轴刻度值的距离
- axis.line: 轴线
- axis.line.x: x轴线
- axis.line.y: y轴线
p0
axis_theme<-theme(axis.title=element_text(#family=NULL,face = "bold", #字体("plain", "italic", "bold", "bold.italic")colour = "red", #字体颜色size = 25,#字体大小hjust = .5, #调整轴标题1:纵轴靠上,横轴靠右;0.5居中;0:纵轴靠下,横轴靠左vjust = .5, #1:靠图边框;0靠近轴线;.5居中angle = 0 #为什么只对横轴标题有作用?),axis.title.x=element_text(colour="blue"),#x轴标题设置,优先级高于axis.titleaxis.title.y=element_text(colour="orange"),#同上axis.text=element_text(colour="red"),#设置坐标轴刻度数字axis.text.x=element_text(colour="blue"),#优先级高于aixis.textaxis.text.y=element_text(colour="orange"),#同上axis.ticks=element_line(#坐标轴刻度线的设置colour="red",size=.5,linetype=1,lineend=1),axis.ticks.x=element_line(colour="blue"),#优先级高于axis.ticksaxis.ticks.y=element_line(colour="orange"),#同上axis.ticks.length=unit(.4,"lines"),#设置刻度线的高度axis.ticks.margin=unit(.4,"cm"),#设置刻度数字与刻度线的距离axis.line=element_line(#设置轴线colour="red"),axis.line.x=element_line(colour="blue"),#设置x轴线,优先于axis.lineaxis.line.y=element_line(colour="orange"))#类似axis.line.xp0+axis_theme
1.4 图例参数设置
- legend.background: 图例背景色
- legend.margin: 图例边界
- legend.key: 图例分类标识底部背景颜色
- legend.key.size: 图例标识大小
- legend.key.height: 图例标识的高度
- legend.key.width: 图例标识的宽度
- legend.text: 图例分类标签
- legend.text.align: 图例分类标签对齐方式
- legend.title: 图例标题
- legend.title.align: 图例标题的对齐方式
- legend.position: 图例位置
- legend.direction: 图例类别排列方向
- legend.justification: 图例位置的偏移调整
- legend.box: 有多个图例时的排列方式
p0
legend_theme<-theme(legend.background=element_rect(colour=NA,#图例边框颜色fill="lightblue"),#图例背景填充色legend.margin=unit(.2,"inches"),#图例与图片区边缘的距离legend.key=element_rect(fill="yellow"),legend.key.size=unit(.2,"inches"),#图例分类符号的大小legend.key.height=unit(.5,"inches"),#图例分类符号高度legend.key.width=unit(.5,"inches"),#图例符号的宽度legend.text=element_text(colour="red",size=20),#图例分类标签设置legend.text.align=0,#0左,1右,0.5居中, 图例分类标签的对齐方式legend.title=element_text(colour="blue",size=20),#图例标题设置legend.title.align=1,#图例标题对齐方式legend.position=c(0.6,.7),#"none","left","right","bottom","top",or # two-element numeric vector,(0,0)-(1,1)legend.direction="horizontal",#"vertical" 图例排列方向legend.justification=c(.4,.4),#"center" or two-element numeric vectorlegend.box="vertical",#"horizontal",对图例的排列方式legend.box.just="top"#多图例的居中方式
)p0+legend_theme
这篇关于【转载】ggplot2主题设置的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!