--- license: other task_categories: - time-series-forecasting task_ids: - univariate-time-series-forecasting - multivariate-time-series-forecasting annotations_creators: - no-annotation source_datasets: - original tags: - time-series - forecasting - benchmark - fev - tsfile - apache-tsfile - modality:timeseries - Time-series - format:tsfile - arxiv:2509.26468 size_categories: - 100K Note: 2230 original `id` values contained invalid identifier characters and were normalized to valid device names, for example 1→_1, 2→_2, 3→_3. ## Conversion Notes - The source FEV format stores each time series as one nested row containing `id`, `timestamp[]`, and target or covariate arrays. - The TsFile conversion flattens those nested arrays into long rows. Therefore, the `TsFile rows` values above correspond to the number of timestamped observations after flattening. - TAG columns identify the device and static metadata. FIELD columns contain values that change over time. - Large logical tables may be split into multiple `.tsfile` shards such as `_1.tsfile`, `_2.tsfile`, and so on. Shards listed for the same frequency belong to the same logical table. ## Reading Example ```python from tsfile import TsFileReader reader = TsFileReader("1D/1D_1.tsfile") schemas = reader.get_all_table_schemas() # Table name(s): rossmann_1D, rossmann_1W ```