CoolFace
Datasetpublic

ByteDance/CloudTimeSeriesData

Intro The data organization follows TFB format: https://github.com/decisionintelligence/TFB. TFB data format TFB stores time series in a format of three column long tables, which we will introduce below: Format Introduction First column: date (the exact column name is required, the same applies below.) The columns stores the time information in the time series, which can be in either of the following formats: Timestamps in string, datetime, or… See the full description on the dataset page: https://huggingface.co/datasets/ByteDance/CloudTimeSeriesData.

sourceHugging Faceupdated 2y agoView on Hugging Face
1likes83downloads
Dataset Card

Intro

The data organization follows TFB format: https://github.com/decisionintelligence/TFB.

TFB data format

TFB stores time series in a format of three column long tables, which we will introduce below:

Format Introduction

First column: date (the exact column name is required, the same applies below.)

  • The columns stores the time information in the time series, which can be in either of the following formats:
  • Timestamps in string, datetime, or other types that are compatible with pd.to_datetime;
  • Integers starting from 1, e.g. 1, 2, 3, 4, 5, ...

Second column: data

  • This column stores the series values corresponding to the timestamps.

Third column: cols

  • This column stores the column name (variable name).

Multivariate time series example:

A common time series in wide table format:

datechannel1channel2channel3
10.1110
20.2220
30.3330

Convert to TFB format:

datedatacols
10.1channel1
20.2channel1
30.3channel1
11channel2
22channel2
33channel2
110channel3
220channel3
330channel3

License

This dataset is released under CC BY 4.0