有没有办法增加一个小平面上的strip.text栏的高度?

前端之家收集整理的这篇文章主要介绍了有没有办法增加一个小平面上的strip.text栏的高度?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我希望顶部的灰色条更宽,如同它的边缘从字母的顶部和底部稍稍延伸(strip.text – A,B,C等).我会认为线条将会作为填充,但它不会.
ggplot(diamonds,aes(carat,price,fill = ..density..)) +
  xlim(0,2) + stat_binhex(na.rm = TRUE)+
  facet_wrap(~ color) +
  theme(strip.text = element_text(lineheight=20))

解决方法

首先,修改级别,使其包含换行符:
levels(diamonds$color) <- paste0(" \n",levels(diamonds$color),"\n ")

然后根据需要进行调整.例如:

P <- ggplot(diamonds,fill = ..density..)) +
      xlim(0,2) + stat_binhex(na.rm = TRUE)+
      facet_wrap(~ color)

P +  theme(strip.text = element_text(size=9,lineheight=0.5))
P +  theme(strip.text = element_text(size=9,lineheight=3.0))
原文链接:https://www.f2er.com/html/230984.html

猜你在找的HTML相关文章