如何更改R中的字体和大小。我想要Times New Roman是可能的。我应该把命令放在哪里这个我试图改变字体的脚本
答案 0 :(得分:0)
如果您指的是更改绘图的图例和标签中的字体。然后,这是使用ggplot2的可能解决方案。可以找到完整的字体列表here。
library(tidyverse)
df <- data_frame(a=runif(100),
b=runif(100),
c=sample(c("Class A","Class B"), 100, T))
ggplot(df, aes(x=a,y=b,colour=c)) +
geom_line() +
theme(text=element_text(family="Times"))