ggplot(agcd,aes(a,weight=value,fill=bq))+geom_bar(position="stack") 二、实例二 1.标签的颜与条形的颜色顺序一致性 可以加入Order命令 library(plyr) ggplot(agcd,es(a,weight=value,fill=bq))+geom_bar(position="stack",aes(order=dsc(bq))); 2. library(RColorBrewer newpalette<-olorRampPalett...
ggplot(agcd,aes(a,weight=value,fill=bq))+geom_bar(position="stack") 如果想画出来的图, 标签的颜色与条形的颜色顺序一致性,可以加入Order命令 library(plyr); ggplot(agcd,aes(a,weight=value,fill=bq))+geom_bar(position="stack",aes(order=desc(bq))); 颜色的修改 library(RColorBrewer); newpal...
tiff(filename="bac_genus.tiff",width=20,height=18,units="cm",compression="lzw",bg="white",res=600); ggplot(eee,aes(bq,weight=value,fill=name))+geom_bar(position="stack",aes(order=desc(name))) +theme(legend.title=element_blank())+ylab("丰度")+xlab("样品")+scale_fill_manual(val...
library(ggplot2) ggplot(data, aes(x = category, fill = value)) + geom_bar() + theme(legend.title = element_text(hjust = 0.5, wrap = TRUE)) 在上述代码中,legend.title参数设置为element_text函数,并使用hjust参数将标题居中对齐,使用wrap参数进行自动换行。 图例标题换行的优势: 提高可读性:...