美文网首页生信
R语言的mtext 函数

R语言的mtext 函数

作者: 看远方的星 | 来源:发表于2021-10-11 19:50 被阅读0次
    image.png
    用mtext函数把y (每个小区产量,10g)放在红色框附近

    代码:
    mtext("y (每个小区产量,10g)",side = 1,adj = 1,line=2.5 )

    用法:
    mtext(text, side = 3, adj = NA,line = 0 )
    text :你要绘出的文字(以下简称文字)
    side:文字绘制在哪一边,1是底,2是左,3是顶,4是右


    image.png

    line:文字距离四条线的距离


    image.png

    adj:adj = 0 means left or bottom alignment, and adj = 1 means right or top alignmen(0意味着左边或底部对齐,1意味着右边或顶部对齐)


    image.png

    mtext("y (每个小区产量,10g)",side = 1,adj = 1,line=2.5 )
    绘制y (每个小区产量,10g),位置在底部右对齐,距离坐标轴2.5

    详细看官方文档:?mtext

    相关文章

      网友评论

        本文标题:R语言的mtext 函数

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