Mihaela Grigore
  • 👋About
  • 👩‍🏭Personal projects
    • Computer Vision | Deep Learning with Tensorflow & Keras (ResNet50, GPU training)
    • Computer Vision | Convolutional Neural Networks with PyTorch
    • Computer Vision | Facial Recognition with Keras, FaceNet, Inception, Siamese Networks
    • NLP | Topic modeling on tweets
    • NLP | Sentiment analysis of tweets: TextBlob, VADER and Flair
    • Time series | Exploration on Crypto price dataset
    • Data scraping | Social Media Scraping: Twitter Developer API for Academics
    • Data Scraping | Collecting historical tweets without Twitter API
  • ✍️Notes
    • Machine Learning in Production
      • Feature transforms
      • Feature selection
      • Data journey
    • NLP
      • Information Retrieval
    • Computer Vision
    • Time series
      • Stationarity
    • Data
      • Labeling
    • Python
      • ndarray slicing with index out of bounds
  • 📚Readings & other media
    • Computer Vision
      • Selection of research articles
    • NLP
      • Handwriting Text
      • Information Retrieval
      • Mono- / multilingual
      • Topic Modeling
      • Language Models
    • Time Series
    • Generative Adversarial Netoworks (GAN)
    • Python
      • Python basics
Powered by GitBook
On this page
  1. Notes
  2. Time series

Stationarity

Very popular concept in time series.

The formal definition: A stationary time series is one whose properties do not depend on the time at which the series is observed.

Stationary data is one that has no obvious upward or downward trend and no seasonality. Also, the variability around a local mean does not change throughout time.

The opposite can be said about stock price, for example, during the top of the bull market, when higher prices have higher variations than during normal times.

Historically, people first developed methods to work with stationary data. Then they developed methods to transform non-stationary data into stationary.

But they also noticed you loose a lot of information in the process. So the next step in evolution was to develop methods that deal directly with non-stationary data (e.g. State-Space Models or integrated ARIMA)

The take home message: checking for stationarity is not always necessary. It depends on the model.

PreviousTime seriesNextData

Last updated 3 years ago

✍️