Creating synthetic time series data

By Medium - 2021-02-22

Description

We synthetic versions of a time-series dataset, visualize and analyze the results, and discuss several use cases for synthetic time series data.

Summary

  • A step-by-step guide to creating high quality synthetic time-series datasets with Python TL;DR In this post, we will create synthetic versions of a time-series dataset using Gretel.ai’s synthetic data library, visualize and analyze the results, and discuss several use cases for synthetic time series data.
  • The training dataset For our training dataset we will create a time series model at hourly intervals.
  • Plotting the time series training set Extract trend data Next, we create the training set for our synthetic model.
  • To match the time range of the original dataset, we’ll use Gretel’s seed_fields function, which allows you to pass in data to use as a prefix for each generated row.

 

Topics

  1. Backend (0.24)
  2. Machine_Learning (0.16)
  3. Database (0.13)

Similar Articles

LSTM for time series prediction

By KDnuggets - 2021-01-23

Learn how to develop a LSTM neural network with PyTorch on trading data to predict future prices by mimicking actual values of the time series data.

Random Forest for Time Series Forecasting

By Machine Learning Mastery - 2020-11-01

Random Forest is a popular and effective ensemble machine learning algorithm. It is widely used for classification and regression predictive modeling problems with structured (tabular) data sets, e.g. ...