i have a problem i can't find a solution for.
I have a data set with 3 sample sites and different sample variables ("Bulk" and "Rhizosphere").
My code:
ggplot(data=dr_stats_all, aes(x=treatment, y=co2c, fill=type)) +
geom_bar(stat = "identity") +
facet_wrap(~ site + type, nrow=1)
This gives me six subplots with the sample site labels twice for "Bulk" and "Rhizosphere".
Is there a way to share the lables from the sample sites?