Datasets:
Tasks:
Time Series Forecasting
Modalities:
Time-series
Size:
10K<n<100K
Tags:
language_creators:found
forecasting
benchmark
monash-time-series-forecasting-repository
monash-tsf
tsfile
License:
Dataset Viewer
The dataset viewer should be available soon. Please retry later.
london_smart_meters (TsFile format)
5560 half hourly time series that represent the energy consumption readings of London households in kilowatt hour (kWh) from November 2011 to February 2014.
This repository contains the full source .tsf series from the Monash Time Series Forecasting Repository converted to Apache TsFile format.
Summary
- Source dataset:
Monash-University/monash_tsf - Original source: https://zenodo.org/record/4656072
- Monash subset:
london_smart_meters - Modalities: Time-series
- Source series: 5,560
- Rows: 166,528,896 flattened timestamped observations
- Frequency:
half_hourly - Forecast horizon metadata: not specified
- Missing-values metadata: True
- Equal-length metadata: False
- Missing target values preserved as NaN: 5,486
- Series length range: 288 to 39,648
- TsFile output: 165 files (london_smart_meters_1.tsfile .. london_smart_meters_99.tsfile)
Files
london_smart_meters_1.tsfilelondon_smart_meters_10.tsfilelondon_smart_meters_100.tsfilelondon_smart_meters_101.tsfilelondon_smart_meters_102.tsfilelondon_smart_meters_103.tsfilelondon_smart_meters_104.tsfilelondon_smart_meters_105.tsfilelondon_smart_meters_106.tsfilelondon_smart_meters_107.tsfilelondon_smart_meters_108.tsfilelondon_smart_meters_109.tsfilelondon_smart_meters_11.tsfilelondon_smart_meters_110.tsfilelondon_smart_meters_111.tsfilelondon_smart_meters_112.tsfilelondon_smart_meters_113.tsfilelondon_smart_meters_114.tsfilelondon_smart_meters_115.tsfilelondon_smart_meters_116.tsfilelondon_smart_meters_117.tsfilelondon_smart_meters_118.tsfilelondon_smart_meters_119.tsfilelondon_smart_meters_12.tsfilelondon_smart_meters_120.tsfilelondon_smart_meters_121.tsfilelondon_smart_meters_122.tsfilelondon_smart_meters_123.tsfilelondon_smart_meters_124.tsfilelondon_smart_meters_125.tsfile- ... 135 more
.tsfileshards
TsFile Schema
| Column | Role | TsFile type |
|---|---|---|
Time |
TIME | INT64 |
series_id |
TAG | STRING |
series_name |
TAG | STRING |
start_timestamp |
TAG | STRING |
target |
FIELD | FLOAT |
Conversion Notes
- Each source
.tsfdata row is stored as one TsFile device. - Source
.tsfattributes are stored as TAG columns. - The
targetseries values are flattened into timestamped rows and stored as a FLOAT FIELD. Timeis synthesized from the source start timestamp and the.tsffrequency metadata, with millisecond precision.- Large outputs may be sharded by the TsFile conversion tool; all listed shards belong to the same logical table
london_smart_meters.
Reading Example
from tsfile import TsFileReader
reader = TsFileReader("london_smart_meters_1.tsfile")
schemas = reader.get_all_table_schemas()
- Downloads last month
- 836