码迷,mamicode.com
首页 > 其他好文 > 详细

ggplot 改变每一个分面的颜色

时间:2018-11-10 10:43:00      阅读:690      评论:0      收藏:0      [点我收藏+]

标签:uil   plot   child   table   rect   change   fill   children   spl   

### change ggplot strip colours
p <- ggplot(mpg, aes(displ, cty)) + geom_point() + facet_grid(drv ~ cyl)
p
g <- ggplot_gtable(ggplot_build(p))
strip_both <- which(grepl(‘strip-‘, g$layout$name))
fills <- c("red","green","blue","yellow","red","green","blue","yellow")
k <- 1
for (i in strip_both) {
j <- which(grepl(‘rect‘, g$grobs[[i]]$grobs[[1]]$childrenOrder))
g$grobs[[i]]$grobs[[1]]$children[[j]]$gp$fill <- fills[k]
k <- k+1
}
grid.draw(g)

ggplot 改变每一个分面的颜色

标签:uil   plot   child   table   rect   change   fill   children   spl   

原文地址:https://www.cnblogs.com/huangying78/p/9937988.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!