如何为等高线图上的颜色键添加标题?

How to add a title to the color key on a contourplot?

如何在格子等高线图中为颜色键添加标题?

library(lattice)
contourplot(volcano, region=T, main='title')

我搜索了文档,但没有看到有关 colorkey 参数或任何其他 contourplot/levelplot 选项的文本或标题的任何信息。

找到了几种不同的方法来做到这一点,并认为我 post 为了 post 诚实:

选项 1

来自评论:How to make two small changes to a contourplot produced in lattice感谢@rcs。

contourplot(volcano, region=T, main='title', subtitle='sub',
    legend=list(top=list(fun=grid::textGrob("Volcanoes", y=0, x=1.09))))

选项 2

来源:How to add a title to legend scale using levelplot in R?感谢@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()