library(ggthemes)p+theme_economist()+labs(subtitle="Change theme_economist")#其他可选#theme_economist theme_economist_white theme_wsj theme_excel theme_few #theme_foundation theme_igray theme_solarized theme_stata theme_tufte 自定义主题 可根据常见需要自定义常用主题 p + theme_MJ() + labs(subtit...
AI代码解释 library("ggplot2")library("reshape2")library("ggthemes")library("magrittr")mydata<-data.frame(Name=c("苹果","谷歌","脸书","亚马逊","腾讯"),Company=c("Apple","Google","Facebook","Amozon","Tencent"),Sale2013=c(5000,3500,2300,2100,3100),Sale2014=c(5050,3800,2900,2500...
【简说基因】ggplot2 是一种面向数据的绘图系统,可以先进行数据相关的绘图以探索数据,最后呈现结果时,再通过主题控制所有非数据元素。 ggplot2 有 8 个内置主题和许多扩展主题包,本系列文章将会对 ggplot2 目…
cowplot::plot_grid(p1,p2,p3,p4,p5,p6,p7,p8,ncol = 4) ggthemes拓展主题 #加载包 library(ggthemes) 1、theme_clean() p+theme_clean() 2、theme_calc() p+theme_calc() 3、theme_economist() p+theme_economist() 4、theme_igray() p+theme_igray() 5、theme_fivethirtyeight() p+theme_fiv...
Quick functions to change plot themes Several functions are available in ggplot2 package for changing quickly the theme of plots : theme_gray : gray background color and white grid lines theme_bw : white background and gray grid lines p + theme_gray(base_size = 14) p + theme_bw() them...
library(ggthemes)p + theme_economist() +labs(subtitle="Change theme_economist")#其他可选#theme_economist theme_economist_white theme_wsj theme_excel theme_few#theme_foundation theme_igray theme_solarized theme_stata theme_tufte 自定义主题
2. ggthemes包 ggplot2扩展包,包括主题函数和标度函数。 ggthemes包种最常见的12种主题。 p <- ggplot(mtcars,aes(x=wt,y=mpg,color=factor(gear)))+ geom_point()+labs(title = 'Cars')+ theme(plot.title = element_text(hjust = 0.5,family = 'Times New Roman')) ...
在安装其中一个包之后,通常可以像使用内置的ggplot2主题或调色板一样使用新的主题或调色板。下面是ggthemes包的太阳主题和色盲调色板的示例:library(ggthemes)ggplot(penguins, aes(x = bill_length_mm, y = body_mass_g, color = species)) + geom_point() + ggthemes::theme_solarized() + scale_...
Themes for ggplot2Thierry Onkelinx
library(ggthemes)p+theme_economist() +labs(subtitle="Change theme_economist") #其他可选theme_economist theme_economist_whitetheme_wsj theme_exceltheme_few#theme_foundationtheme_igraytheme_solarizedtheme_stata theme_tufte 自定义主题 可根据常见需要自定义常用主题 ...