Book Image

Data Forecasting and Segmentation Using Microsoft Excel

By : Fernando Roque
Book Image

Data Forecasting and Segmentation Using Microsoft Excel

By: Fernando Roque

Overview of this book

Data Forecasting and Segmentation Using Microsoft Excel guides you through basic statistics to test whether your data can be used to perform regression predictions and time series forecasts. The exercises covered in this book use real-life data from Kaggle, such as demand for seasonal air tickets and credit card fraud detection. You’ll learn how to apply the grouping K-means algorithm, which helps you find segments of your data that are impossible to see with other analyses, such as business intelligence (BI) and pivot analysis. By analyzing groups returned by K-means, you’ll be able to detect outliers that could indicate possible fraud or a bad function in network packets. By the end of this Microsoft Excel book, you’ll be able to use the classification algorithm to group data with different variables. You’ll also be able to train linear and time series models to perform predictions and forecasts based on past data.
Table of Contents (19 chapters)
1
Part 1 – An Introduction to Machine Learning Functions
5
Part 2 – Grouping Data to Find Segments and Outliers
10
Part 3 – Simple and Multiple Linear Regression Analysis
14
Part 4 – Predicting Values with Time Series

Calculating the CMA

The moving average of a value over a period of time helps to smooth the time-series lines and avoid the drastic peaks typical of this seasonal kind of data. The seasonal peaks that occur throughout are included in our analysis. They are part of the data behavior that will appear in the forecast, and they are not outliers. The moving average helps to direct the trend line of the forecast, including these peaks. We will use the distance of the data from the moving average line to determine the seasonal trend of the time series. This information helps to build the forecast curve of the data, taking the seasonal variations of the series into account.

The steps to produce a forecast from the moving average are as follows:

  1. Calculating the moving average for the given period of time – for example, taking the moving average of all the quarters of the year.
  2. Getting the CMA of your data. This is the middle of the calculating period. This CMA smooths...