Revenue Forecast and the secret of the last observed value

[This article was first published on Copula, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

I’ve tried a few forecasts with the Forecast Package but irrespective of the number of observations it appears that the last observed value has a dramatic impact on the results.

Just a short example with a few observations. This are revenues of an IT&S company with no seasonality impact.

The company had a fantastic 2015 result but in the recent history the numbers showed some volatility.

Hence I was wondering what the Forecast Package would come up with.




a=ts(c(3006,3658,3712,3575,3228,3845,4362), frequency = 1, start = c(2008, 2))
plot(forecast(a,h=5,level=c(80,95)),main=”XY 5 Year Forecast”)


Now, let’s assume the company did improve the numbers in 2015 but just on a more modest basis to let’s say 3900.

a=ts(c(3006,3658,3712,3575,3228,3845,3900), frequency = 1, start = c(2008, 2))
plot(forecast(a,h=5,level=c(80,95)),main=”XY 5 Year Forecast”)


 Now, have a look at the 5 year Forecast. Revealing, isn’t it!

To leave a comment for the author, please follow the link and comment on their blog: Copula.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)