我在R中制作了时间图,但现在我要设置标题"第4阶段"在情节之上。我已经尝试过" head ="第4阶段"和" title =第4阶段"但这没有用
library("extrafont")
plot <- ts.plot(newdata, col=1:5)
print(plot)
dev.copy2pdf(file="C:/Users/X/Desktop/timeplot_fase4.pdf",height=3,
width=4,title="Phase 4", family="CM Roman",pointsize=12);
dev.off ();
有谁知道我能做到这一点?
答案 0 :(得分:0)
您可以在情节陈述中添加标题。
plot <- ts.plot(newdata, col=1:5, main="Phase 4")