01 ASAP TimeSeriesForcasting Day1 2 Introduction
01 ASAP TimeSeriesForcasting Day1 2 Introduction
Business Analytics
MODULE II-Unit:3
Time Series Forecasting
There are a few additional concepts that are important to explain for those new to Python:
Scalar class: A scalar class is a numerical value alone and defines a vector
space. A quantity described by multiple scalars, such as having both direction and
magnitude, is called a vector.
Array class: An array class is a data structure that holds a fixed number of values of the
same data type.
Data type: A data type is a labeling of different data objects. It represents the type of
values in your data set used to understand how to store and manipulate data.
Primary creation method: A group of functions and operations that are typically written
and used to perform a single or a set of actions on your data. Functions, if properly written,
provide better efficiency, reproducibility, and modularity to your Python code.
Time stamps vs. Periods: The pandas library in Python provides comprehensive
and built-in support for time series data. The examples below and for the rest of
the chapter focuses on energy demand forecasting. In general, demand
forecasting is the practice of predicting future demand (or quantity of specific
products and services) by using historical demand data to make informed business
decisions about future plans, such as planning a product inventory optimization
strategy, allocating marketing investments, and estimating the cost of new
products and services to meet customer demand and needs.
Energy demand forecasting is a type of demand forecasting where the goal is to
predict the future load (or energy demand) on an energy grid. It is a critical
business operation for companies in the energy sector, as operators need to
maintain the fine balance between the energy consumed on a grid and the energy
supplied to it. Typically, grid operators can take short-term decisions to manage
energy supply to the grid and keep the load in balance. An accurate short-term
forecast of energy demand is therefore essential for the operator to make these
decisions with confidence. This scenario details the construction of a machine
learning energy demand forecasting solution.
Let's first look at the concept of time stamped data, which is the most essential
type of time series data and helps you combine values with specific points in time.
This means that each data point of your data set will have a temporal information
that you can leverage.
Time Series Exploration and Understanding
In the following sections, you will learn the first steps to take to explore,
analyze, and understand time series data. We will focus on these topics:
➢ How to get started with time series data analysis
➢ How to calculate and review summary statistics for time series data
➢ How to perform data cleaning of missing periods in time series
➢ How to perform time series data normalization and standardization