R语言ggplot2画横向直方图以及去掉图例

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为调节图例隐藏的参数。

你可能感兴趣的:(R语言ggplot2画横向直方图以及去掉图例)