ggplot的字体设置
文章目录
geom_text
geom_text
是直接向ggplot对象中添加绘制的文字
theme
在theme
中以element_text()
设置字体
element_text(family = NULL**,** face = NULL**,** colour = NULL**,** size = NULL**,** hjust = NULL**,** vjust = NULL**,** angle = NULL**,** lineheight = NULL)
其中,title
设置图表的标题,坐标轴标题以及图例的文本样式。axis.text
则对应坐标轴刻度标尺的字体。
theme_set
使用theme_set
函数可全局设置特定主题中的字体大小
|
|
yyplot::set_font
使用Y叔提供yyplot
中提供的set_font
函数可以在最后同一设置文字。(对于geom_text
, 或theme
中的axis.text
, text
均生效)
参考来源
https://www.cnblogs.com/wkslearner/p/5701207.html
https://stackoverflow.com/questions/25061822/ggplot-geom-text-font-size-control
https://cloud.tencent.com/developer/ask/65053
https://guangchuangyu.github.io/cn/2017/09/ggplot2-set-font/
https://cran.r-project.org/web/packages/svglite/vignettes/fonts.html