ggplot2图例位置legend.position怎么调整
这篇文章主要介绍“ggplot2图例位置legend.position怎么调整”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“ggplot2图例位置legend.position怎么调整”文章能帮助大家解决问题。
ggplot2绘图过程种,控制图例在图中的位置利用theme(legend.position)参数
该参数对应的设置如下:
legend.position | the position of legends ("none", "left", "right", "bottom", "top", or two-element numeric vector) |
其中none 表示隐藏图例,可参考https://www.恰卡编程网.com/article/383
其他类型表示控制具体位置,包括 "left" 左, "right" 右, "bottom" 下, "top" 上,以绘图过程 https://www.恰卡编程网.com/article/92 为基础,修改theme(legend.position)
p_bottom=p+theme(legend.position="bottom")print(p_bottom)
但是需要主要,legend.position也可以用两个元素构成的数值向量来控制,主要是设置图例在图片中间所在具体位置,而不是图片的外围。数值大小一般在0-1之间,超出数值往往导致图例隐藏。
c(0.9,0.7)
p_v=p+theme(legend.position=c(0.9,0.7))print(p_v)
c(0.9,1.1) 仅出现小半图例
p_v=p+theme(legend.position=c(0.9,1.1))print(p_v)
c(0.9,1.2) 图例完全超出绘图板,可以理解隐藏
p_v=p+theme(legend.position=c(0.9,1.2))print(p_v)
关于“ggplot2图例位置legend.position怎么调整”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注恰卡编程网行业资讯频道,小编每天都会为大家更新不同的知识点。