时间:2020.10.15
ggplot2
画图时进行图例位置的调整。
参考网址:https://www.omicsclass.com/article/428, https://blog.csdn.net/zx403413599/article/details/48581713
ggplot2作图:添加和管理标题:https://zhuanlan.zhihu.com/p/93224999
在此博客上已经讲的非常详细,直接引用。
ggplot2绘图过程种,控制图例在图中的位置利用theme(legend.position)参数 该参数对应的设置如下: legend.positionthe position of legends ("none", "left", "right", "bottom", "top", or...
其他类型表示控制具体位置,包括 "left" 左, "right" 右, "bottom" 下, "top" 上,以绘图过程 https://www.omicsclass.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)
添加一个 不要图例操作
# 不要图例
theme(legend.position='none')