0

我正在使用 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”)。

非常感谢!

4

1 回答 1

1

从 ggplot2 添加和编辑 theme() 参数有效。虽然我想有其他方法来设置字体,但我将我使用的代码和相应的输出粘贴在下面,以防对其他人有帮助。

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") + theme(text = element_text(family = "Times New Roman")) 

更新的示例输出

于 2020-08-25T18:46:27.143 回答