Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

tourism_monthly (TsFile format)

This dataset contains 366 monthly time series used in the Kaggle Tourism forecasting competition.

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/4656096
  • Monash subset: tourism_monthly
  • Modalities: Time-series
  • Source series: 366
  • Rows: 109,280 flattened timestamped observations
  • Frequency: monthly
  • Forecast horizon metadata: 24
  • Missing-values metadata: False
  • Equal-length metadata: False
  • Missing target values preserved as NaN: 0
  • Series length range: 91 to 333
  • TsFile output: 1 file (tourism_monthly.tsfile)

Files

  • tourism_monthly.tsfile

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 .tsf data row is stored as one TsFile device.
  • Source .tsf attributes are stored as TAG columns.
  • The target series values are flattened into timestamped rows and stored as a FLOAT FIELD.
  • Time is synthesized from the source start timestamp and the .tsf frequency metadata, with millisecond precision.
  • Large outputs may be sharded by the TsFile conversion tool; all listed shards belong to the same logical table tourism_monthly.

Reading Example

from tsfile import TsFileReader

reader = TsFileReader("tourism_monthly.tsfile")
schemas = reader.get_all_table_schemas()
Downloads last month
29