Not sure what I'm doing wrong here. I have this plot:
ggplot(data.PE5, aes(ybands,fill=factor(decide))) + geom_bar(position="dodge")
which produces: 
Then I want to focus the factor by creating two folded graphs with dodging, color bars
ggplot(data.PE5, aes(ybands,fill=factor(decide))) + geom_bar(position="dodge") + facet_grid(~group_label)
However, I am losing the factor coloring that I want to keep:

source share