我正在尝试创建一个调色板,我可以在tm_fill函数中使用该调色板,以便能够创建唱片。
tm_shape(LdnCensusMap) + tm_borders(col = 'Grey', alpha = 0.3) + tm_fill(col = "Privaterent", palette = sequential_hcl(8, alpha=0.6), title = "Privately Rented (%)", style = "equal", n = 8,) + tm_shape(ldn) +
目前我目前正在使用预设调色板,但我想知道是否有一种方法可以创建自己的自定义,然后将其替换为palette = sequential_hcl(8, alpha=0.6)
。
非常感谢
您使用的是软件包tmaps
,对吗?您可以像在此示例中一样使用RColorBrewer
创建调色板(在软件包的文档中):
data(World, Europe, NLD_muni, NLD_prov, land, metro)
if (require(RColorBrewer)) {
pal <- brewer.pal(10, "Set3")[c(10, 8, 4, 5)]
tm_shape(Europe) +
tm_polygons("EU_Schengen", palette=pal, title = "European Countries",
showNA=FALSE) +
tm_format_Europe()
}
您也可以选择以十六进制格式选择颜色,并设置一个这样的调色板:
# Random colors in HEX.
Mypal <- c('#313695','#fee090','#d73027','#72001a')
# Ploting the ma again with my custom palette
tm_shape(Europe) +
tm_polygons("EU_Schengen", palette=Mypal, title = "European Countries",
showNA=FALSE) +
tm_format_Europe()