美文网首页
非常见线性图Line graph的绘制2020-12-06

非常见线性图Line graph的绘制2020-12-06

作者: RashidinAbdu | 来源:发表于2022-04-19 13:59 被阅读0次

    3.8 非常见线性图Line graph的绘制:ggplot2::scale_y_log10()的应用
    数据格式:

    image.png
    library(ggplot2)#加载包
    
    L<-ggplot(lg, aes(x=Species.Rank, y=Cumultative.relative.abundance)) + geom_line(aes(color="black",size=0.18),show.legend = FALSE)#绘制线形图并删除legend
    
    #或者可用theme(legend.position = "none")可以删除legend
    
    image.png

    发现,纵轴是log型,所以进行修改

    L<-L+ggplot2::scale_y_log10()
    L
    
    得到目标图: image.png

    对坐标轴名称字体进行修改:

    L<-L+theme(axis.title = element_text(size = 12,face = "bold"))
    L
    
    得到: image.png

    相关文章

      网友评论

          本文标题:非常见线性图Line graph的绘制2020-12-06

          本文链接:https://www.haomeiwen.com/subject/szjawktx.html