R语言ggplot2画横向直方图以及去掉图例
2020-11-23 本文已影响0人
马疾香幽_0702
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为调节图例隐藏的参数。