ggplot(data,aes(x=x,y=y,shape=z,color=z,size=x))+geom_point()+ guides(shape=FALSE,size=FALSE) 1. 2. 3. 4. 方法2, theme() library(ggplot2) data=data.frame(x=1:10,y=1:5,z=factor(1:5)) ggplot(data,aes(x=x,y=y,shape=z,color=z,size=x))+geom_point()+ theme(legend...
axis.text.y = element_text(family ="lishu", face="bold", colour="black", size=10)# y轴刻度文本信息控制 ) #三、图例相关文本信息自定义 p + theme(legend.title=element_text(color="purple", face="bold", size=12),# 图例标题文本信息控制 legend.text=element_text(family ="lishu", face...
myplot + theme(plot.title = element_text(size = 30)) 改变图名称的字体大小 (5) 改变图例的字体大小 myplot + theme(legend.text = element_text(size = 30)) 改变图例的字体大小 类似的,如果需要改变图例title的字体大小,也可以用: myplot + theme(legend.title = element_text(size = 30)) 改变图例...
plot.caption=element_text(size=15))# caption 修改坐标轴 代码语言:javascript 复制 p+theme(axis.title.x=element_text(vjust=1,size=20),#Xaxis title axis.title.y=element_text(size=10,color="blue"),#Yaxis title axis.text.x=element_text(size=10,angle=45,color="red",vjust=.5),#Xaxis t...
p+theme(legend.key =element_rect(color="red")) #进行填充 p+theme(legend.key = element_rect(fill="yellow")) #图例内容字体大小、颜色、角度等设置 p+theme(legend.text= element_text(size=25, color="darkred", angle=45)) #为图例标题设置字体、颜色、大小等 ...
ggplot2 theme相关设置—文本调整 在geom设置和scale设置之后,要想把图画的漂亮,theme设置是比不可少的 在theme 设置中element_text()是一项很重要的内容 element_text(family=NULL,face=NULL,colour=NULL,size=NULL,hjust=NULL,vjust=NULL,angle=NULL,lineheight=NULL)...
由于绘图和轴标题是文本组件,使用element_text()参数修改。 设置title的尺寸,颜色,线高,位置 p+theme(plot.title=element_text(size=20,face="bold",color="skyblue",#颜色hjust=0.5,#调整位置,正中间lineheight=1.2)) 设置subtitle和caption p+theme(plot.subtitle=element_text(size=15,face="bold",color=...
(dose ~ supp)+ theme( strip.text.x = element_text( size = 12, color = "red", face = "bold.italic" ), # 这里设置x轴方向的字体类型, strip.text.y = element_text( size = 12, color = "red", face = "bold.italic" ) # 这里设置y轴方向的字体类型, ) # 修改字体和颜色 p + ...
p+theme(legend.key = element_rect(fill="yellow")) #图例内容字体大小、颜色、角度等设置 p+theme(legend.text = element_text(size=25, color="darkred", angle=45)) #为图例标题设置字体、颜色、大小等 p+theme(legend.title = element_text(face="italic", size=25, color="red")) ...
p+theme(legend.key = element_rect(fill="yellow")) #图例内容字体大小、颜色、角度等设置 p+theme(legend.text = element_text(size=25, color="darkred", angle=45)) #为图例标题设置字体、颜色、大小等 p+theme(legend.title = element_text(face="italic", size=25, color="red")) ...