I have two time series. One shows the number of interactions with advertisements and the other shows revenue. It's all generated data that I'm using to get a better understanding at this stuff.
I figured out how to layer the two charts on top of each other.
actions_ma <- ma(ts(actions_per_day_full$actions, start = c(2014, 1), frequency = 365), order = 15)
rev_ma <- ma(ts(daily_rev_full$revenue, start = c(2014, 1), frequency = 365), order = 15)
autoplot(actions_ma) + autolayer(rev_ma)
Is it possible to get them to have separate y axis so that you can see their relationship at different scales?