Combine two time series forecast on the same chart

Hello,

I have generated two time series forecast graph, stored the two graphs as f1 and f2. Is there a way I can have f1 and f2 displayed on the same chart? Thanks!

empseries <- ts((Data$tot_emp),freq=1,start=c(1997,5))
m1 <- auto.arima(empseries,max.q=0,max.d=0,ic="aic",seasonal=FALSE)
summary(m1)
f1 <- forecast(m1,h=6)
plot(f1)

trafficseries <- ts((Traffic$Traffic_adj),freq=12,start=c(1989,1),end=c(2019,5))
m2 <- auto.arima(trafficseries,max.q=0,max.d=0,ic="aic",seasonal=FALSE)
summary(m2)
f2 <- forecast(m2,h=72)
plot(f2)

Hi Andy, welcome!

We don't really have enough info to help you out. Could you ask this with a minimal REPRoducible EXample (reprex)? A reprex makes it much easier for others to understand your issue and figure out how to help.

If you've never heard of a reprex before, you might want to start by reading this FAQ: