当前位置:   article > 正文

ggplot分组柱形图调整legend的大小_legend.key.size

legend.key.size

参考:https://www.cnblogs.com/emanlee/p/5373649.html

先放一个gallery里的例子

 # library
library(ggplot2)
 
# create a dataset
specie <- c(rep("sorgho" , 3) , rep("poacee" , 3) , rep("banana" , 3) , rep("triticum" , 3) )
condition <- rep(c("normal" , "stress" , "Nitrogen") , 4)
value <- abs(rnorm(12 , 0 , 15))
data <- data.frame(specie,condition,value)
 
# Grouped
ggplot(data, aes(fill=condition, y=value, x=specie)) + 
    geom_bar(position="dodge", stat="identity")
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

在这里插入图片描述
然后改theme里的legend.key.size就好了

last_plot() + theme(legend.key.size = unit(0.1, "inches"))
  • 1

在这里插入图片描述
图例就变小了。然后还可以通过调整legend.margin来调整图例四周的空白区域的大小,这在把图例嵌入到图中时很有用。

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

闽ICP备14008679号