9 Nature of Time Series
Time series data is a sequence of data points collected or recorded at successive points in time, typically at uniform intervals. It is characterized by its temporal ordering, meaning that the order of the data points matters and can reveal patterns, trends, and seasonal variations over time. Typically, time series data exhibits sequential dependencies, indicating that the value at a given time point may be influenced by previous values in the series.
Time series are not only used in industrial contexts, but also in various other fields such as finance, economics, environmental science, healthcare, and social sciences.
9.1 Examples of Time Series Data
9.1.1 Airline passenger numbers
This time series shows the monthly totals of international airline passengers from 1949 to 1960. Source: RDatasets (accessed via statsmodels).

9.1.2 Atmospheric CO2 concentrations
This time series shows the monthly average atmospheric CO2 concentrations measured at the Mauna Loa Observatory in Hawaii. Source: statsmodels.datasets.

9.1.3 Simulated Random Walk
Just a simulated random walk time series. Code:
import numpy as np
random_walk = np.cumsum(np.random.randn(200))
9.1.4 S&P 500 index
This time series shows the daily closing prices of the S&P 500 in 2020. Source: Yahoo Finance (downloaded via the yfinance package).

9.1.5 Electrocardiagram (ECG) Signal
This time series represents an electrocardiogram (ECG) signal, which measures the electrical activity of the heart over time. Source: scipy.misc.electrocardiogram.
