How to plot a two-columned grid of time series with custom titles using R?
问题 I have the following code (although without data, sadly): detrend_plot <- cbind(l_p_lng,l_vol_lng,l_p_oil,l_rgdpe, ldiff_p_lng,ldiff_vol_lng,ldiff_p_oil,ldiff_rgdpe) plot.ts(detrend_plot, main="",) which gives the following plot: What I want to do is to add custom titles, individual y-axis labels, and x-axis labels. I know that this is possible using GGPLOT , although my knowledge of it is sparse. Has anyone encountered a similar problem? I don't think this is possible using the regular plot