I created the chart below using the following commands:
ggplot(long.data, aes(owner,value)) + stat_summary(fun.y=mean,geom="bar", fill=c("deepskyblue","deepskyblue4")) + stat_summary(fun.data=mean_cl_normal,geom="errorbar",position= position_dodge(width=.90),width=.1) + labs(x="",y="") + facet_grid(IV~experiment+type,scales="free_y") + theme(strip.text.y = element_text(colour = 'red4'))
If I want to change the color of the text (and possibly also the background color) only for the top face x (in this case, βImplicitβ and βExplicitβ levels), how can I do this? Is it possible? I have not read anything about this in the ggplot2 documentation.
Andrea

EDITOR: I'm sorry for the confusion. My goal is to change the color of the text and background of one of the upper stripes, not the color of the facet.
source share