我正在使用 Choroplethr 包为即将发布的出版物生成一些地图。有谁知道如何调整输出图形的图形参数?(具体来说,我希望将字体更改为期刊所需的字体。)
library(choroplethr)
library(choroplethrMaps)
library(ggplot2)
data(county.regions)
texas.counties<-county.regions[county.regions$state.name=="texas",]
fakedata<-as.data.frame(texas.counties$region)
fakedata$value<-runif(n=254, min=0, max=1)
colnames(fakedata)[1]<-"region"
county_choropleth(fakedata,
state_zoom = c("texas"),
num_colors=1,
legend = "test")
所以在这个特定的例子中,我希望改变图例中显示的字体(“test”、“0.25”、“0.50”、“0.75”)。
非常感谢!