Time Series Analysis
Background
Time series data consist of any data collected over time. Examples of such data include: climate data, financial data such as stock prices, streamflow data, etc. Analysis of time series data is significant in decision making , management and allocation of resources such as predicting current and future water demands, business sales etc. Generally, time series analysis involves understanding and discerning of characteristics inherent to the time series data under analysis, which is significant in developing robust post-processing methodologies for time series forecasting and modeling, trend and pattern detection etc. These series of tutorials will walk you through different steps in analysis of the characteristics of any given time series data using Python. It should be noted these similar steps can be applied in other programming languages such as R.
Contents
Part 1: Manipulation of time series data
This section focuses on reading/importing, manipulation, exploration and visualization of time series data using python Pandas.
Exploration of data characteristics such as seasonality, autocorrelation, and stationarity using visualization and quantitative techniques .
Discover the use of parametric and non-parametric methods to detect trends within data. Limitations and strengths of methods are presented.
Part 4: Time series data modeling
Introduction to decomposition of time series data using additive and multiplicative modeling approaches. Suitability of each modeling approach is discussed.