eg:
ggplot(TZP_new,aes(x=Cell_type,y=Percentage,fill=Cell_type))+geom_bar(stat="identity")+coord_flip()+guides(fill = F)
其中,corrd_flip()选项即为把图像横向的参数。
guides为调节图例隐藏的参数。
eg:
ggplot(TZP_new,aes(x=Cell_type,y=Percentage,fill=Cell_type))+geom_bar(stat="identity")+coord_flip()+guides(fill = F)
其中,corrd_flip()选项即为把图像横向的参数。
guides为调节图例隐藏的参数。