如何将图例编号和文字设为粗体?
How can I make the legend numbers and text in bold?
我正在使用这个绘制 2 个光栅:
spplot(r, colorkey = list(space = "bottom", height = 1)) +
spplot(merged, cex=0.5, col.regions="green")
grid.text('Test', y=unit(0.025, "npc"),
rot=360, x=unit(0.5, "npc"))
如何在 粗体 and/or 中增加以下内容 - a) 勾号 b) 图例标题
我不确定这个答案。但是,在这种情况下设置 gp 参数是否有效?
grid.text('Test', y=unit(0.025, "npc"),
rot=360, x=unit(0.5, "npc"),
gp=gpar(fontsize = 20, fontface="bold"))
对于刻度数,尝试添加 font = 2
?
colorkey = list(space = "bottom", height = 1, labels = list(font = 2))
Damiano Fantini 的解决方案适用于图例标题。
我正在使用这个绘制 2 个光栅:
spplot(r, colorkey = list(space = "bottom", height = 1)) +
spplot(merged, cex=0.5, col.regions="green")
grid.text('Test', y=unit(0.025, "npc"),
rot=360, x=unit(0.5, "npc"))
如何在 粗体 and/or 中增加以下内容 - a) 勾号 b) 图例标题
我不确定这个答案。但是,在这种情况下设置 gp 参数是否有效?
grid.text('Test', y=unit(0.025, "npc"),
rot=360, x=unit(0.5, "npc"),
gp=gpar(fontsize = 20, fontface="bold"))
对于刻度数,尝试添加 font = 2
?
colorkey = list(space = "bottom", height = 1, labels = list(font = 2))
Damiano Fantini 的解决方案适用于图例标题。