0

在预测包中,如何从预测图中禁用显示模型信息的自动标题?

4

1 回答 1

1

您可以在函数中使用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如何指定您自己的标题的示例。

于 2013-09-06T08:36:30.473 回答