Simple Forecasting Methods (2024)

Wouldn’t it be wonderful to be able to see the future? We will probably get there someday, but time series forecasting gets you close as it allows us to look ahead of time and helps us in business forecasting.

Simple Forecasting Methods (3)

Some forecasting methods are extremely simple and surprisingly effective. While there are a wide range of forecasting methods, in this article we focus on three simple methods that financial analysts use to predict future revenues, expenses, and capital costs for a business etc. They are: (1) Average, (2) Naïve, and (3) Seasonal Naïve.

(1) Average Method:

Here, the forecasts or the future predictions are equal to the average or mean of the historical data available.

We can forecast this using meanf function in R as shown below :

meanf(y, h)

y -> Contains the time series data

h -> Forecast Horizon

Example: The below plot shows the average or mean method applied to forecast the Australian quarterly beer production.

Simple Forecasting Methods (4)

Note : R code for all the example plots in this article can be found here

(2) Naïve Method:

In Naïve method, we simply set all the forecasts to the latest observation values.

In general, a person or an action showing a lack of experience is termed as Naïve. So, this method would work very well for many economic and financial time series data where there is no related historical data.

We can forecast this using naive function in R as shown below :

naive(y, h)

Example: The below plot shows the Naive method applied to forecast the Australian quarterly beer production.

Simple Forecasting Methods (5)

Note : R code for all the example plots in this article can be found here

(3) Seasonal Naïve Method:

Simple Forecasting Methods (2024)
Top Articles
Latest Posts
Article information

Author: Velia Krajcik

Last Updated:

Views: 6407

Rating: 4.3 / 5 (54 voted)

Reviews: 85% of readers found this page helpful

Author information

Name: Velia Krajcik

Birthday: 1996-07-27

Address: 520 Balistreri Mount, South Armand, OR 60528

Phone: +466880739437

Job: Future Retail Associate

Hobby: Polo, Scouting, Worldbuilding, Cosplaying, Photography, Rowing, Nordic skating

Introduction: My name is Velia Krajcik, I am a handsome, clean, lucky, gleaming, magnificent, proud, glorious person who loves writing and wants to share my knowledge and understanding with you.