Chapter 7. Signal Processing and Time Series
Signal processing is a field of engineering and applied mathematics that encompasses analyzing the variables that vary over time, such data is also known as analog and digital signals. One of the categories of signal processing techniques is time series analysis. A time series is an ordered list of data points starting with the oldest measurements first. The data points are usually equidistant, for instance, hourly, daily, weekly, monthly, or annual sampling. In time series analysis, the order of the values is important. It's common to try to derive a relation between a value and another data point or combination of data points, a fixed number of periods in the past, in the same time series.
The time series examples in this chapter use annual sunspot cycles data. This data is provided by the statsmodels
package (an open source Python project). The examples use NumPy/SciPy, Pandas, and also statsmodels
.
We will cover the following...