theme_grey()为默认主题,theme_bw()为白色背景主题,theme_classic()为经典主题。 代码语言:javascript 复制 p+theme_bw()+labs(subtitle="Change theme_bw") ggplot2 扩展包主题 代码语言:javascript 复制 library(ggthemes)p+theme_economist()+labs(subtitle="Change theme_economist")#其他可选#theme_economist...
在ggplot2中使用theme_bw函数可以设置图表的主题为白色背景,并且可以通过theme函数进一步自定义图表的样式。要在ggplot2中居中打印标题,可以使用labs函数来设置图表的标题。 具体操作步骤如下: 首先,加载ggplot2包:library(ggplot2) 创建一个基础图表对象,例如:p <- ggplot(data, aes(x = x, y = y)) + geom...
ggplot(data1, aes(v1, v2)) + geom_point() + theme_bw() # theme_bw()主题。 ggplot(data1, aes(v1, v2)) + geom_point() + theme_linedraw() # theme_linedraw() ggplot(data1, aes(v1, v2)) + geom_point() + theme_light() # theme_light() ggplot(data1, aes(v1, v2)) ...
ggplot(data1, aes(v1, v2)) + geom_point() + theme_bw() # theme_bw()主题。 ggplot(data1, aes(v1, v2)) + geom_point() + theme_linedraw() # theme_linedraw() ggplot(data1, aes(v1, v2)) + geom_point() + theme_light() # theme_light() ggplot(data1, aes(v1, v2)) ...
p1 + theme_gray() 这个是默认的主题,浅灰色背景,白色网格线 theme_bw: p1 + theme_bw() 这个主题是白色背景,深灰色网格线。 其他主题 p3 <- p1 + theme_linedraw() p4 <- p1 + theme_light() p5 <- p1 + theme_dark() p6 <- p1 + theme_minimal() ...
1 theme_bw主题 p+ theme_bw + mytheme 2 theme_minimal主题 p+ theme_minimal + mytheme 3 theme_classic 主题 p+ theme_classic + mytheme 4 theme_gray 主题 p+ theme_gray + mytheme 第二、使用ggthemes包提供的主题函数 1 theme_excel主题 ...
theme_minimal() theme_void() 更换主题只需: p+theme_bw() 其它六种主题如下: ggthemes主题 除此之外我们还可以直接调用ggthemes的22种主题(Function reference • ggthemes (jrnold.github.io)): 效果如下: 主题更新 在以上所有函数中,我们都可以直接设定基础字体及大小,如: ...
输入?theme可以看到theme()功能的大量参数,可以实现与外观相关的大多数要求。其中有四种主要类型: element_text():使用element_text()函数设置基于文本的组件,如title,subtitle 和caption等。 element_line():使用element_line()设置基于线的组件,如轴线,主网格线和次网格线等。
1、theme_gray() p1<-p+theme_gray()+ggtitle("theme_gray()")+theme(legend.position='none')p1 2、theme_bw() p2<-p+theme_bw()+ggtitle("theme_bw()")+theme(legend.position='none')p2 3、theme_classic() p3<-p+theme_classic()+ggtitle("theme_classic()")+theme(legend.position='none'...
theme_gray(): gray background color and white grid lines theme_bw() : white background and gray grid lines theme_linedraw : black lines around the plot theme_light : light gray lines and axis (more attention towards the data) theme_minimal: no background annotations ...