Hi, am using the code below to create a barplot with facet grid. The facet grid shows up with everything labelled, but the bars are not showing up. What am I doing wrong?
ggplot(data, aes(x = var)) +
geom_bar()+
labs(title = "title", subtitle = "subtitle",
x = "xname", y = "yname") +
facet_grid(var1 ~ var2)