Characteristics of Time Series Data
Introduction
Time series measurements possess seasonality, autocorrelation, trend, and noise characteristics that need to be accounted during time series analysis. It should be noted that one or all of these characteristics can possessed by the time series dataset. Thus, it is significant to understand which data characteristics are inherent to the dataset under analysis. Autocorrelation - Tendency of current time series values to depend on previous values over time. Seasonality - Characteristic of the time series data to possess distinct repeated patterns over time. Trend - Tendency of time series data to go up, down or stay the same over time. Below are some of the approaches to examination of time series data characteristics using python.
Contents
Autocorrelation
Use of autocorrelation plots
use quantitative statistical approaches for testing correlation such as Pearson correlation, Kendall, Spearman etc to quantify the magnitude of correlation.
Autocorrelation plot at maximum lag of 60
Autocorrelation plot at maximum lag of 720
Seasonality
Use autocorrelation plots or split the data into different time scale and visualize the dataset for each individual time scale
You can also visualize the noise and catch any outliers within the dataset.
Distribution of daily flow values grouped by month