ggplot2::geom_text 字体作为图形的其余部分

ggplot2::geom_text font as the rest of graph

我使用下面给出的代码得到了以下图表:

library(ggplot2)
library(ggthemes)

p <- ggplot(data = mtcars, mapping = aes(x = wt, y = mpg)) + 
     geom_point() +
     theme_igray()
p
p + geom_text(mapping = aes(label = rownames(mtcars)))

p + geom_text(mapping = aes(label = rownames(mtcars)), family = "Times New Roman")

geom_text 的字体与图表其余部分的字体不同。我想知道如何才能让 geom_text 的字体与图形其余部分的字体相同。

已编辑

sessionInfo()
R version 3.6.0 (2019-04-26)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 18.04.2 LTS

Matrix products: default
BLAS:   /usr/lib/x86_64-linux-gnu/atlas/libblas.so.3.10.3
LAPACK: /usr/lib/x86_64-linux-gnu/atlas/liblapack.so.3.10.3

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_US.UTF-8        LC_COLLATE=en_US.UTF-8    
 [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
 [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
 [9] LC_ADDRESS=C               LC_TELEPHONE=C            
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] ggthemes_4.2.0 ggplot2_3.1.1 

loaded via a namespace (and not attached):
 [1] Rcpp_1.0.1       rstudioapi_0.10  magrittr_1.5     tidyselect_0.2.5
 [5] munsell_0.5.0    colorspace_1.4-1 R6_2.4.0         rlang_0.3.4.9003
 [9] stringr_1.4.0    plyr_1.8.4       dplyr_0.8.1      tools_3.6.0     
[13] grid_3.6.0       gtable_0.3.0     withr_2.1.2      lazyeval_0.2.2  
[17] assertthat_0.2.1 tibble_2.1.1     crayon_1.3.4     purrr_0.3.2     
[21] vctrs_0.1.0.9003 zeallot_0.1.0    glue_1.3.1       labeling_0.3    
[25] stringi_1.4.3    compiler_3.6.0   pillar_1.4.0     scales_1.0.0    
[29] backports_1.1.4  pkgconfig_2.0.2 

我不确定为什么轴标题的字体与 geom_text 在您的图表中调用所产生的字体不同。如果我 运行 你的代码,字体是相同的。

根据 Hadley Wickham 的 "ggplot2: Elegant Graphics for Data Analysis"(第 2 版),

there are only 3 fonts that are guaranteed to work everywhere: "sans", "serif", and "mono" (p. 37)

如果你使用下面的代码,我想你的轴和 geom_text 会有相同的字体。

# solution for text family
### explicitely setting "family" twice
p <- ggplot(data = mtcars, mapping = aes(x = wt, y = mpg)) + 
  geom_point() +
  theme_igray(base_family = "sans")                                     ## <----

p + geom_text(mapping = aes(label = rownames(mtcars)), family = "sans") ## <----

在我这边,这产生了下图:

在我这边,我可以为图表中的两种文本类型打开 "sans"、"serif" 和 "mono" 的任意组合。

请让我知道这是否适合您。

这对你有用吗?我通过 运行 theme_igray %>% View() 查看了主题参数,我看到基线 text 大小和颜色是 12 pt 黑色,但是 axis.textgrey30 和相对大小为 0.8,即 9.6 pt。与全黑字体相比,略微 lighter-than-black 的颜色与使用较轻的字体粗细产生的外观相似。

出于神秘原因,如 here 所述,geom_text 中的文本大小按接近 0.353 的比例缩放[编辑,请参阅@zeehio 的评论;与主题大小相比,它是 25.4/72]。颜色和尺寸应该匹配。

library(ggplot2)
library(ggthemes)

p <- ggplot(data = mtcars, mapping = aes(x = wt, y = mpg)) + 
  geom_point() +
  theme_igray()
p
p + geom_text(mapping = aes(label = rownames(mtcars)),
              color = "gray30", size = 12 * 5/14 * 0.8)

这是另一个例子。在我的系统上(OSX 10.13,R 3.5.1)这些匹配,我通过使用 GIMP 中的“差异”过滤器确认,显示它们排列。

base_size = 36
ggplot(data = mtcars, mapping = aes(x = wt, y = mpg)) + 
  annotate("text", x = 1, y = 5*3:6, label = 5*3:6,
           color = "gray30", size = 12 * 0.353 * 0.8) +
  annotate("text", x = 10, y = 5*3:6, label = 5*3:6,
           color = "gray30", size = 12 * 0.353 * 0.8) +
  theme_igray() +
  theme(panel.grid = element_blank())