I was looking for a build method using facet_gridin ggplot2that displays only a few selected faces. let's say I have the following plot:

Looking for a quick way, for example, just draw faces 1 and 3.
y<-1:12
x<-c(1,2,3,1,2,3,1,2,3,1,2,3)
z<-c("a","a","a","b","b","b","a","a","a","b","b","b")
df<-as.data.frame(cbind(x,y,z))
a <- ggplot(df, aes(x = z, y = y,
fill = z))
b <- a + geom_bar(stat = "identity", position = "dodge")
c <- b + facet_grid(. ~ x, scale = "free_y")
c
Obviously, I figured out how to chop off my data first, but this, of course, can be highlighted in ggplot2. Even a greeting would be very helpful.