2017-04-01 131 views

回答

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")) 
相關問題