在预测包中,无法将比例尺放置在左侧。您必须手动移除比例尺并将它们添加到左侧。这可以通过设置来完成autoplot(x, range.bars = FALSE)
。
theme()
您可以通过将相应的文本字段设置为 来指定 ggplot2 中的字体系列element_text(family = ***)
。
我在USAccDeaths
这里用作示例数据集:
library(fpp2)
#> Registered S3 method overwritten by 'quantmod':
#> method from
#> as.zoo.data.frame zoo
#> ── Attaching packages ────────────────────────────────────────────── fpp2 2.4 ──
#> ✓ ggplot2 3.3.5.9000 ✓ fma 2.4
#> ✓ forecast 8.15 ✓ expsmooth 2.3
#>
autoplot(decompose(USAccDeaths, type = "additive"))+
labs(y=expression(Chl[a]~(µg/L)), x="Year") +
ggtitle(expression(Decomposed~Chl[a]~Time~Series~BB1)) +
theme(
plot.title=element_text(hjust=0.5),
text = element_text(family = "Times New Roman", size = 15)
)
由reprex 包于 2021-08-26 创建 (v2.0.0 )