R 修改plot字体为times new roman
时间: 2024-02-13 08:04:11 浏览: 465
因素效应图-v833/v831_datasheet_v1.0
你可以使用以下代码将R中plot的字体修改为times new roman:
```R
# 安装 times new roman 字体
# 安装 extrafont 包
install.packages("extrafont")
# 导入 times new roman 字体
library(extrafont)
font_import(pattern = "times new roman")
# 修改 plot 字体为 times new roman
library(ggplot2)
ggplot(mtcars, aes(x = wt, y = mpg)) +
geom_point() +
theme(text = element_text(family = "Times New Roman"))
```
首先,你需要安装`extrafont`包并导入`times new roman`字体。然后,使用`ggplot2`包绘制图形,并使用`theme`函数将字体设置为`Times New Roman`。
阅读全文