当前位置:   article > 正文

R语言-ggplot绘制柱形图_r语言柱形图ggplot

r语言柱形图ggplot

ggplot2包绘制柱形图

  1. #加载R包
  2. library(ggplot2)
  3. #读取电脑上csv文件
  4. data<-read.csv(file=file.choose(),header=T,sep=",")
  5. chao<- ggplot(data,aes(x,chao,fill=group1))
  6. +scale_color_manual(values=rep(c("red","blue"),time=6))
  7. +geom_bar(stat="identity",position="stack",width=0.75)
  8. +theme(axis.title=element_blank(),axis.text.x=element_text(colour="black",size=10,face="bold"))
  9. +theme_classic()
  10. +theme(axis.ticks.length.x=unit(0,'cm'),panel.background=element_blank(),panel.grid.minor=element_blank(),panel.grid.major=element_blank(),legend.title=element_blank(),legend.text=element_text(face="bold",color = "black",size=13))
  11. +labs(x="",y="",title = "Chao1")
  12. +scale_y_continuous(expand = c(0,0))
  13. +theme(axis.line = element_line(arrow =arrow(length = unit(0.15,'cm')) ))

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小蓝xlanll/article/detail/669179
推荐阅读
相关标签
  

闽ICP备14008679号