How to Check if Time Series Data is Stationary with Python

How to Check if Time Series Data is Stationary with Python

Time series is different from more traditional classification and regression predictive modeling problems. The temporal structure adds an order to the observations. This imposed order means that important assumptions about the consistency of those observations needs to be handled specifically. For example, when modeling, there are assumptions that the summary statistics of observations are consistent. […]

Continue Reading
Moving Average Smoothing for Data Preparation, Feature Engineering, and Time Series Forecasting with Python

Moving Average Smoothing for Data Preparation and Time Series Forecasting in Python

Moving average smoothing is a naive and effective technique in time series forecasting. It can be used for data preparation, feature engineering, and even directly for making predictions. In this tutorial, you will discover how to use moving average smoothing for time series forecasting with Python. After completing this tutorial, you will know: How moving […]

Continue Reading
How to Normalize and Standardize Time Series Data in Python

How to Normalize and Standardize Time Series Data in Python

Some machine learning algorithms will achieve better performance if your time series data has a consistent scale or distribution. Two techniques that you can use to consistently rescale your time series data are normalization and standardization. In this tutorial, you will discover how you can apply normalization and standardization rescaling to your time series data […]

Continue Reading