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))总结
以上是内存溢出为你收集整理的有没有办法增加一个小平面上的strip.text栏的高度?全部内容,希望文章能够帮你解决有没有办法增加一个小平面上的strip.text栏的高度?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)