如何以粗体显示图例编号和文本?

时间:2017-08-25 01:30:55

标签: r lattice

我正在使用此绘制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")) 

如何以粗体制作以下内容和/或增加尺寸-a)刻度数b)图例标题

enter image description here

2 个答案:

答案 0 :(得分:4)

我不确定这个答案。但是,在这种情况下设置gp参数会起作用吗?

$wednesday === Carbon::WEDNESDAY; // true

答案 1 :(得分:3)

对于刻度数,请尝试添加font = 2

colorkey = list(space = "bottom", height = 1, labels = list(font = 2))

Damiano Fantini的解决方案适用于我的传奇故事。