0PricingLogin
Learn AI with Python · Lesson

Time Series Components and Stationarity

Trend, seasonality, noise, ADF test for stationarity, differencing to achieve stationarity.

What Is a Time Series?

A time series is data indexed in time order, such as daily sales or hourly temperature. Because observations are ordered and often correlated, special techniques are needed; you cannot just shuffle the rows like ordinary tabular data.

The Three Components

A classic view decomposes a series into:

  • Trend: long-term upward or downward movement.
  • Seasonality: repeating patterns at fixed periods (weekly, yearly).
  • Residual: the leftover random noise after removing trend and seasonality.

All lessons in this course

  1. Time Series Components and Stationarity
  2. ARIMA and SARIMA Models
  3. Prophet for Automated Forecasting
  4. LSTM for Time Series Forecasting
← Back to Learn AI with Python