我想摆脱不使用的空间

在这种情况下,我尝试使用ggplot2绘制条形图,但各组的名称相同,我希望每个组使用不同的名称。我在x轴上得到的名字是 组1中的aa,bb,cc,dd,ee 组2中的aa,bb,cc,dd,ee 组3中的aa,bb,cc,dd,ee        但是我想要这个 组1中的aa,bb,cc,dd,ee 组2中的ff,gg,hh,ii,jj 组3中的kk,ll,mm,nn,oo 谢谢您的帮助。

library(ggplot2)
datos3 <- read.csv("datos3.csv")
p<- ggplot(datos3, aes(x=N2, y=x, fill=g))+
 geom_bar(stat="identity", color="black", position="dodge")+
 facet_wrap(. ~f)+
 geom_errorbar(aes(ymin=x-e, ymax=x+e), width=.2, position=position_dodge(.9)) +
 scale_x_continuous(breaks = c(1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2, 3, 4, 5), 
 labels = c("aa", "bb", "cc", "dd", "ee", "ff", "gg", "hh", "ii", "jj", "kk", "ll", "mm", "nn", "oo"))+
 theme(axis.text.x= element_text(angle=90, hjust=1))+
 labs(x = "Microorganismos", y = "Actividad enzimatica")
 p

penter image description here