Is it possible to remove the empty grey boxes (highlighted inside red circle) present to the right side of the decomposed plots (attached)?
Also, it is possible to change the title fonts (highlighted inside green circle) of the individual to Times New Roman or any other fonds of choice?
The r code used for creating the plot is as below
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))
time series- decomposed plots
In the forecast package it is not possible to position the scale bars on the left. You would have to remove the scale bars and add them to the left yourself manually. This can be done by setting
autoplot(x, range.bars = FALSE)
.You can specify the font family in ggplot2 by setting the appropriate
theme()
text field toelement_text(family = ***)
.I have used
USAccDeaths
as an example dataset here:Created on 2021-08-26 by the reprex package (v2.0.0)