Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases now! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Practical Time Series Analysis
Practical Time Series Analysis

Practical Time Series Analysis: Master Time Series Data Processing, Visualization, and Modeling using Python

Arrow left icon
Profile Icon Avishek Pal Profile Icon PKS Prakash
Arrow right icon
$27.98 $39.99
Full star icon Half star icon Empty star icon Empty star icon Empty star icon 1.4 (5 Ratings)
eBook Sep 2017 244 pages 1st Edition
eBook
$27.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m
Arrow left icon
Profile Icon Avishek Pal Profile Icon PKS Prakash
Arrow right icon
$27.98 $39.99
Full star icon Half star icon Empty star icon Empty star icon Empty star icon 1.4 (5 Ratings)
eBook Sep 2017 244 pages 1st Edition
eBook
$27.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m
eBook
$27.98 $39.99
Paperback
$48.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Table of content icon View table of contents Preview book icon Preview Book

Practical Time Series Analysis

Understanding Time Series Data

In the previous chapter, we touched upon a general approach of time series analysis which consists of two main steps:

  • Data visualization to check the presence of trend, seasonality, and cyclical patterns
  • Adjustment of trend and seasonality to generate stationary series

Generating stationary data is important for enhancing the time series forecasting model. Deduction of the trend, seasonal, and cyclical components would leave us with irregular fluctuations which cannot be modeled by using only the time index as an explanatory variable. Therefore, in order to further improve forecasting, the irregular fluctuations are assumed to be independent and identically distributed (iid) observations and modeled by a linear regression on variables other than the time index.

For example, house prices might exhibit both trend and seasonal (for example, quarterly...

Advanced processing and visualization of time series data

In many cases, the original time series needs to be transformed into aggregate statistics. For example, observations in the original time series might have been recorded at every second; however, in order to perform any meaningful analysis, data must be aggregated every minute. This would need resampling the observations over periods that are longer than the granular time indices in the original data. The aggregate statistics, such as mean, median, and variance, is calculated for each of the longer periods of time.

Another example of data pre-processing for time series, is computing aggregates over similar segments in the data. Consider the monthly sales of cars manufactured by company X where the data exhibits monthly seasonality, due to which sales during a month of a given year shows patters similar to the sales of the...

Resampling time series data

The technique of resmapling is illustrated using a time series on chemical concentration readings taken every two hours between 1st January 1975 and 17th January 1975. The dataset has been downloaded from http://datamarket.com and is also available in the datasets folder of this book's GitHub repo.

We start by importing the packages required for running this example:

from __future__ import print_function 
import os 
import pandas as pd 
import numpy as np 
%matplotlib inline 
from matplotlib import pyplot as plt 

Then we set the working directory as follows:

os.chdir('D:/Practical Time Series') 

This is followed by reading the data from the CSV file in a pandas.DataFrame and displaying shape and the first 10 rows of the DataFrame:

df = pd.read_csv('datasets/chemical-concentration-readings.csv') 
print('Shape of the dataset...

Stationary processes

Properties of data such as central tendency, dispersion, skewness, and kurtosis are called sample statistics. Mean and variance are two of the most commonly used sample statistics. In any analysis, data is collected by gathering information from a sample of the larger population. Mean, variance, and other properties are then estimated based on the sample data. Hence these are referred to as sample statistics.

An important assumption in statistical estimation theory is that, for sample statistics to be reliable, the population does not undergo any fundamental or systemic shifts over the individuals in the sample or over the time during which the data has been collected. This assumption ensures that sample statistics do not alter and will hold for entities that are outside the sample used for their estimation.

This assumption also applies to time series analysis...

Time series decomposition

The objective of time series decomposition is to model the long-term trend and seasonality and estimate the overall time series as a combination of them. Two popular models for time series decomposition are:

  • Additive model
  • Multiplicative model

The additive model formulates the original time series (xt) as the sum of the trend cycle (Ft) and seasonal (St) components as follows:

xt = Ft + St + Єt

The residuals Єt obtained after adjusting the trend and seasonal components are the irregular variations. The additive model is usually applied when there is a time-dependent trend cycle component, but independent seasonality that does not change over time.

The multiplicative decomposition model, which gives the time series as product of the trend, seasonal, and irregular components is useful when there is time-varying seasonality:

xt = Ft x St x...

Summary

We started this chapter by discussing advanced data processing techniques such as resampling, group-by, and moving window computations to obtain aggregate statistics from a time series. Next, we described stationary time series and discussed statistical tests of hypothesis such as Ljung-Box test and Augmented Dickey Fuller test to verify stationarity of a time series. Stationarizing non-stationary time series is important for time series forecasting. Therefore, we discussed two different approaches of stationarizing time series.
Firstly, the method of differencing, which covers first, second, and seasonal differencing, has been described for stationarizing a non-stationary time series. Secondly, time series decomposition using the statsmodels.tsa API for additive and multiplicative models has been discussed.
In the next chapter, we delve deeper in techniques of exponential...

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Get your first experience with data analysis with one of the most powerful types of analysis—time series.
  • Find patterns in your data and predict the future pattern based on historical data.
  • Learn the statistics, theory, and implementation of Time Series methods using this example-rich guide

Description

Time Series Analysis allows us to analyze data which is generated over a period of time and has sequential interdependencies between the observations. This book describes special mathematical tricks and techniques which are geared towards exploring the internal structures of time series data and generating powerful descriptive and predictive insights. Also, the book is full of real-life examples of time series and their analyses using cutting-edge solutions developed in Python. The book starts with descriptive analysis to create insightful visualizations of internal structures such as trend, seasonality, and autocorrelation. Next, the statistical methods of dealing with autocorrelation and non-stationary time series are described. This is followed by exponential smoothing to produce meaningful insights from noisy time series data. At this point, we shift focus towards predictive analysis and introduce autoregressive models such as ARMA and ARIMA for time series forecasting. Later, powerful deep learning methods are presented, to develop accurate forecasting models for complex time series, and under the availability of little domain knowledge. All the topics are illustrated with real-life problem scenarios and their solutions by best-practice implementations in Python. The book concludes with the Appendix, with a brief discussion of programming and solving data science problems using Python.

Who is this book for?

This book is for anyone who wants to analyze data over time and/or frequency. A statistical background is necessary to quickly learn the analysis methods.

What you will learn

  • • Understand the basic concepts of Time Series Analysis and appreciate its importance for the success of a data science project
  • • Develop an understanding of loading, exploring, and visualizing time-series data
  • • Explore auto-correlation and gain knowledge of statistical techniques to deal with non-stationarity time series
  • • Take advantage of exponential smoothing to tackle noise in time series data
  • • Learn how to use auto-regressive models to make predictions using time series data
  • • Build predictive models on time series using techniques based on auto-regressive moving averages
  • • Discover recent advancements in deep learning to build accurate forecasting models for time series
  • • Gain familiarity with the basics of Python as a powerful yet simple to write programming language

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Sep 28, 2017
Length: 244 pages
Edition : 1st
Language : English
ISBN-13 : 9781788294195
Category :
Languages :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want

Product Details

Publication date : Sep 28, 2017
Length: 244 pages
Edition : 1st
Language : English
ISBN-13 : 9781788294195
Category :
Languages :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 147.97
Practical Time Series Analysis
$48.99
Python Machine Learning, Second Edition
$43.99
Statistics for Machine Learning
$54.99
Total $ 147.97 Stars icon

Table of Contents

6 Chapters
Introduction to Time Series Chevron down icon Chevron up icon
Understanding Time Series Data Chevron down icon Chevron up icon
Exponential Smoothing based Methods Chevron down icon Chevron up icon
Auto-Regressive Models Chevron down icon Chevron up icon
Deep Learning for Time Series Forecasting Chevron down icon Chevron up icon
Getting Started with Python Chevron down icon Chevron up icon

Customer reviews

Rating distribution
Full star icon Half star icon Empty star icon Empty star icon Empty star icon 1.4
(5 Ratings)
5 star 0%
4 star 0%
3 star 0%
2 star 40%
1 star 60%
Anil Kachroo Feb 19, 2020
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
I have realized that the tech books are not good for Kindle. Never Again.All tech book in paperback only. I will love if Amazon takes this book back and let me buy the same book in paperback.
Amazon Verified review Amazon
Amandeep Dec 10, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
I cant give zero rating...wrong code....missing data file....i m returning my book
Amazon Verified review Amazon
Y Krinker Aug 01, 2019
Full star icon Empty star icon Empty star icon Empty star icon Empty star icon 1
It is hard to believe Packt would allow this book to be published... full of typos and bad code that won't even work most of the time.On top of that, there is zero analysis... more like, here is the plot of this time series... so what does this plot tell us? it is easy to plot it, but i would want you to tell me how to read this plot.total waste of time and to think that two Drs wrote this book! where did their get their degrees from?
Amazon Verified review Amazon
Amazon Customer Oct 09, 2018
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
This is a very elementary book about time series analysis using Python. It is suitable for undergraduate students without any prior knowledge on time series analysis and Python. But the book lacks many important topics such as ARCH/GARCH, vector autoregressions, vector error-correction model, etc., which can be taught in undergraduate classes. It is certainly not recommended for professional researchers.
Amazon Verified review Amazon
Dimitri Shvorob Oct 21, 2017
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
I had had higher expectations for a book co-authored by two Dr's. In the event, only portions of academic terminology and often-gratuitous formulas distinguish this book from a typical Packt "book product", written by an Indian IT worker. It is semi-competent and lazy, and riddled with typos; the most embarrassing ones are on page 119, where typos turn an AR model into an MA one. The authors' idea of time-series analysis is indeed the good old ARMA models, but bolted on to this material is a 20-plus-page section - these are short Packt pages, mind you - on neural networks, using Keras. Apart from the sketchy Keras code, you have tidbits of Python code using Pandas and Statmethods, and basic time-series plots done with Seaborn. If you are ready to pay $45 for the convenience of seeing this code, I envy you. My advice: stay away, and look elsewhere. I remember seeing a good R-based book, "Introductory Time Series with R" by Cowpertwait and Metcalf, but that was years ago, and better options must be available.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.