如何从facet_grid()中删除灰色背景(ggplot2)

时间:2015-07-13 17:22:28

标签: r ggplot2 facet

我有以下情节:

enter image description here

通过执行:

获得
ggplot() + 
  stat_summary( data = test_data1, aes(x=x, y=(1-value) , colour = as.factor(1) , lty = as.factor(1) ) , fun.y=mean, geom="line" ,  size=1 ) +
  stat_summary( data = test_data1, aes(x=x, y=(1-value) , colour = as.factor(1), shape=as.factor(1) ) , fun.y=mean, geom="point" ,  size=3, pch=21, fill="white" ) +
  stat_summary( data = test_data2, aes(x=x, y=(1-value) , colour = as.factor(2), lty = as.factor(2) ) , fun.y=mean, geom="line", size=1 ) +
  stat_summary( data = test_data2, aes(x=x, y=(1-value) , colour = as.factor(2), shape=as.factor(2)) , fun.y=mean, geom="point", size=3, pch=21, fill="white" ) +
  theme_bw(base_size = 14, base_family = "Palatino") + 
  theme(legend.key = element_blank() ) +
  expand_limits(x=c(0), y=c(0)) +
  facet_grid(distance ~ . ) 

如何摆脱100200背后出现的灰色背景。

我希望这是白色的,而不会改变我目前正在使用的其他主题。

1 个答案:

答案 0 :(得分:5)

搜索了一下后,我找到了this post,这解释了可以应用于facet的不同操作。

事实证明,我的问题可以通过以下方式解决:

theme(legend.key = element_blank(), strip.background = element_rect(colour="red", fill="#CCCCFF") ) 

strip.background = element_rect(colour="red", fill="#CCCCFF")内使用theme()可以完成工作。