0

是否可以删除分解图(附加)右侧出现的空灰色框(红色圆圈内突出显示)?

此外,是否可以将个人的标题字体(在绿色圆圈内突出显示)更改为 Times New Roman 或任何其他选择的字体?

用于创建绘图的 r 代码如下

autoplot(decompose(x, 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))

时间序列分解图

时间序列分解图

4

1 回答 1

0

在预测包中,无法将比例尺放置在左侧。您必须手动移除比例尺并将它们添加到左侧。这可以通过设置来完成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 )

于 2021-08-25T22:59:42.350 回答