Dataset Viewer

The dataset viewer is not available because its heuristics could not detect any supported data files. You can try uploading some data files, or configuring the data files location manually.

vehicle_trips (TsFile format)

329 daily time series representing the number of trips and vehicles belonging to a set of for-hire vehicle (FHV) companies.

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/5122535
  • Monash subset: vehicle_trips
  • Modalities: Time-series
  • Source series: 329
  • Rows: 42,382 flattened timestamped observations
  • Frequency: daily
  • Forecast horizon metadata: not specified
  • Missing-values metadata: True
  • Equal-length metadata: False
  • Missing target values preserved as NaN: 7,274
  • Series length range: 70 to 243
  • TsFile output: 1 file (vehicle_trips.tsfile)

Files

  • vehicle_trips.tsfile

TsFile Schema

Column Role TsFile type
Time TIME INT64
series_id TAG STRING
series_name TAG STRING
base_number TAG STRING
base_name TAG STRING
type 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 vehicle_trips.

Usage

Install the Apache TsFile Python SDK (pip install tsfile) and read a converted file:

from pathlib import Path
from tsfile import TsFileReader

path = Path("vehicle_trips.tsfile")
with TsFileReader(str(path)) as reader:
    schemas = reader.get_all_table_schemas()
    print("tables:", list(schemas))
    table_name = next(iter(schemas))
    table = schemas[table_name]
    print("columns:", [c.get_column_name() for c in table.get_columns()])
    with reader.query_table(table_name, ["target"], batch_size=1024) as result:
        batch = result.read_arrow_batch()
        if batch is not None:
            print(batch.to_pandas().head())
Downloads last month
22