我有以下情节:
通过执行:
获得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 ~ . )
如何摆脱100
和200
背后出现的灰色背景。
我希望这是白色的,而不会改变我目前正在使用的其他主题。
答案 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()
可以完成工作。