如何将标题添加到轮廓图上的颜色键?
如何为格子等值线图中的颜色键添加标题?
library(lattice)
contourplot(volcano, region=T, main='title')
我搜索了文档,没有看到有关colorkey
参数或任何其他contourplot / levelplot选项的文本或标题。
找到几种不同的方式来做到这一点,并认为我会张贴他们的后代:
选项1
来自评论:由于@ rcs,如何对格子中生成的等值线图进行两个小改动。
contourplot(volcano, region=T, main='title', subtitle='sub',
legend=list(top=list(fun=grid::textGrob("Volcanoes", y=0, x=1.09))))
选项2
来源于:如何在R中使用levelplot为图例比例添加标题? 感谢@ user20650。
contourplot(volcano, region=T,main='title')
trellis.focus("legend", side="right", clipp.off=TRUE, highlight=FALSE)
grid.text('Volcanoes', 0.5, 1.07, hjust=0.5, vjust=1)
trellis.unfocus()
链接地址: http://www.djcxy.com/p/34529.html
上一篇: How to add a title to the color key on a contourplot?
下一篇: Cppcheck: how to skip a directory of third party header files?