y = boxplot_data:将boxplot_data作为y轴变量添加到绘图对象中。 6. 设置主题为theme_classic() 要将箱型图的主题设置为theme_classic(),只需在绘图代码中添加theme_classic()函数即可。使用以下代码: ggplot(data=NULL,aes(x=NULL,y=boxplot_data))+geom_boxplot()+theme_classic() 1. 2. 3. 7. 结...
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...
ggplot(data1, aes(v1, v2)) + geom_point() + theme_classic() # theme_classic() ggplot(data1, aes(v1, v2)) + geom_point() + theme_void() # theme_void() 2、使用主题相关的包 类似的包有ggthemes、ggthemer、ggtech、ggsci、ggprism、ggpubr、ggThemeAssist等,ggThemeAssist包安装后,可...
这是ggplot2内置的默认主题:theme_grey(),加上其他7个如下: theme_grey() theme_bw() theme_classic() theme_dark() theme_light() theme_linedraw() theme_minimal() theme_void() 更换主题只需: p + theme_bw() 其它六种主题如下: ggthemes主题 除此之外我们还可以直接调用ggthemes的22种主题(...
除此外,ggplot2提供一些已经写好的主题,比如theme_grey()为默认主题,theme_bw()为白色背景主题,theme_classic()为经典主题。 p + theme_classic() 1. 3 ggplot2 扩展包主题 library(ggthemes) p + theme_stata() 1. 2. 除上述外,ggthemes包还提供其他主题,小伙伴们自己尝试吧。
mytheme<-theme( plot.margin=unit(rep(1.2,4),"cm") ) p+mytheme 第一、使用ggplot2包自带的主题函数 1 theme_bw主题 p+ theme_bw + mytheme 2 theme_minimal主题 p+ theme_minimal + mytheme 3 theme_classic 主题 p+ theme_classic + mytheme ...
ggplot(data1, aes(v1, v2)) + geom_point() + theme_classic() # theme_classic() ggplot(data1, aes(v1, v2)) + geom_point() + theme_void() # theme_void() 2、使用主题相关的包 类似的包有ggthemes、ggthemer、ggtech、ggsci、ggprism、ggpubr、ggThemeAssist等,ggThemeAssist包安装后,可...
theme_gray()默认主题,灰色。theme_bw()非常适合显示透明度的映射内容。theme_void()去除非数据外的全部内容。theme_classic()# 经典ggplot 主题,白板背景。 但这个theme_bw 我还是挺喜欢用的。 使用的话,我们直接添加给自己的ggplot 对象即可: 代码语言:javascript ...
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可以看到theme()功能的大量参数,可以实现与外观相关的大多数要求。其中有四种主要类型: element_text():使用element_text()函数设置基于文本的组件,如title,subtitle 和caption等。 element_line():使用element_line()设置基于线的组件,如轴线,主网格线和次网格线等。