EDA notebook

d7210974ae834da5bfe2d8415aa42221

This notebook contains the simple examples of EDA (exploratory data analysis) using ETNA library.

Table of Contents

[1]:
import warnings
warnings.filterwarnings("ignore")

1. Creating TSDataset

Let’s load and look at the dataset

[2]:
import pandas as pd
[3]:
classic_df = pd.read_csv("data/example_dataset.csv")
classic_df.head()
[3]:
timestamp segment target
0 2019-01-01 segment_a 170
1 2019-01-02 segment_a 243
2 2019-01-03 segment_a 267
3 2019-01-04 segment_a 287
4 2019-01-05 segment_a 279

Our library works with the spacial data structure TSDataset. So, before starting the EDA, we need to convert the classical DataFrame to TSDataset.

[4]:
from etna.datasets.tsdataset import TSDataset

To do this, we initially need to convert the classical DataFrame to the special format

[5]:
df = TSDataset.to_dataset(classic_df)
df.head()
[5]:
segment segment_a segment_b segment_c segment_d
feature target target target target
timestamp
2019-01-01 170 102 92 238
2019-01-02 243 123 107 358
2019-01-03 267 130 103 366
2019-01-04 287 138 103 385
2019-01-05 279 137 104 384

Now we can construct the TSDataset

[6]:
ts = TSDataset(df, freq="D")
ts.head(5)
[6]:
segment segment_a segment_b segment_c segment_d
feature target target target target
timestamp
2019-01-01 170 102 92 238
2019-01-02 243 123 107 358
2019-01-03 267 130 103 366
2019-01-04 287 138 103 385
2019-01-05 279 137 104 384

TSDataset has its own implementations of describe and info methods that gives information about distinct time series.

[7]:
ts.describe()
[7]:
start_timestamp end_timestamp length num_missing num_segments num_exogs num_regressors num_known_future freq
segments
segment_a 2019-01-01 2019-11-30 334 0 4 0 0 0 D
segment_b 2019-01-01 2019-11-30 334 0 4 0 0 0 D
segment_c 2019-01-01 2019-11-30 334 0 4 0 0 0 D
segment_d 2019-01-01 2019-11-30 334 0 4 0 0 0 D
[8]:
ts.info()
<class 'etna.datasets.TSDataset'>
num_segments: 4
num_exogs: 0
num_regressors: 0
num_known_future: 0
freq: D
          start_timestamp end_timestamp  length  num_missing
segments
segment_a      2019-01-01    2019-11-30     334            0
segment_b      2019-01-01    2019-11-30     334            0
segment_c      2019-01-01    2019-11-30     334            0
segment_d      2019-01-01    2019-11-30     334            0

2. Visualization

Our library provides a list of utilities for visual data exploration. So, having the dataset converted to TSDataset, now we can visualize it.

[9]:
from etna.analysis import (
    cross_corr_plot,
    distribution_plot,
    sample_acf_plot,
    sample_pacf_plot,
    plot_correlation_matrix
)

2.1 Plotting time series

Let’s take a look at the time series in the dataset

[10]:
ts.plot()
../_images/tutorials_EDA_20_0.png

2.2 Autocorrelation & partial autocorrelation

Autocorrelation function(AFC) describes the direct relationship between an observation and its lag. The AFC plot can help to identify the extent of the lag in moving average models.

Partial autocorrelation function(PAFC) describes the direct relationship between an observation and its lag. The PAFC plot can help to identify the extent of the lag in autoregressive models.

Let’s observe the AFC and PAFC plot for our time series, specifying the maximum number of lags

[11]:
sample_acf_plot(ts, lags=21)
../_images/tutorials_EDA_22_0.png
[12]:
sample_pacf_plot(ts, lags=21)
../_images/tutorials_EDA_23_0.png

2.3 Cross-correlation

Cross-correlation is generally used to compare multiple time series and determine how well they match up with each other and, in particular, at what point the best match occurs. The closer the cross-correlation value is to \(1\), the more closely the sets are identical.

Let’s plot the cross-correlation for all pairs of time series in our dataset

[13]:
cross_corr_plot(ts, maxlags=100)
../_images/tutorials_EDA_25_0.png

2.4 Correlation heatmap

Correlation heatmap is a visualization of pairwise correlation matrix between timeseries in a dataset. It is a simple visual tool which you may use to determine the correlated timeseries in your dataset.

Let’s take a look at the correlation heatmap, adding lags columns to the dataset to catch the series that are correlated but with some shift.

[14]:
from etna.transforms import LagTransform
[15]:
lags = LagTransform(in_column="target", lags=[1,7], out_column="lag")
ts.fit_transform([lags])
[16]:
plot_correlation_matrix(ts, segments=["segment_a","segment_b"], method="spearman", vmin=0.5, vmax=1)
../_images/tutorials_EDA_29_0.png

2.5 Distribution

Distribution of z-values grouped by segments and time frequency. Using this plot, you can monitor the data drifts over time.

Let’s compare the distributions over each year in the dataset

[17]:
distribution_plot(ts, freq="1Y")
../_images/tutorials_EDA_31_0.png

3. Outliers

Visually, all the time series contain outliers - abnormal spikes on the plot. Their presence might cause the reduce in predictions quality.

[18]:
ts.plot()
../_images/tutorials_EDA_34_0.png

In our library, we provide two methods for outliers detection. In addition, you can easily visualize the detected outliers using plot_anomalies

[19]:
from etna.analysis.outliers import get_anomalies_median, get_anomalies_density
from etna.analysis import plot_anomalies

3.1 Median method

To obtain the point outliers using the median method we need to specify the window for fitting the median model.

[20]:
anomaly_dict = get_anomalies_median(ts, window_size=100)
plot_anomalies(ts, anomaly_dict)
../_images/tutorials_EDA_38_0.png

3.2 Density method

It is a distance-based method for outliers detection. Don’t rely on default parameters)

[21]:
anomaly_dict = get_anomalies_density(ts)
plot_anomalies(ts, anomaly_dict)
../_images/tutorials_EDA_40_0.png

The best practice here is to specify the method parameters for your data

[22]:
anomaly_dict = get_anomalies_density(ts, window_size=18, distance_coef=1, n_neighbors=4)
plot_anomalies(ts, anomaly_dict)
../_images/tutorials_EDA_42_0.png

That’s all for this notebook. More features for time series analysis you can find in our documentation.