R how to add facet labels for pyramid like plot in ggplot2
I have created pyramid like plot and I want to add labels for each side of the plot (something like facet labels). My data: dt <- data.frame(Answer = factor(x = rep(x = c(1:3), times = 2), labels = c("Yes", "No", "Maybe")), Gender = factor(x = rep(x = c(1:2), each = 3), labels = c("Female", "Male")), Prc = c(74.4, 25.0, 0.6, 61.3, 35.5, 3.2), label = c("74.4%", "25.0%", "0.6%", "61.3%", "35.5%", "3.2%")) My plot: My code for plot generation: xmi <- -70 xma <- 80 library(ggplot2) ggplot(data = dt, aes(x = Answer, fill = Gender)) + geom_bar(stat = "identity", subset = .(Gender == "Female"), aes