Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在预测包中,如何从预测图中禁用显示模型信息的自动标题?
您可以在函数中使用main参数plot(设置绘图的“主标题”)。使用以下示例?plot.forecast:
main
plot
?plot.forecast
# with title (default) deaths.fit <- hw(USAccDeaths, h = 48) plot(deaths.fit) # remove title. `""` is an empty character string plot(deaths.fit, main = "")
另请参阅有关?title如何指定您自己的标题的示例。
?title