File size: 1,184 Bytes
123bc86 47e750e 123bc86 47e750e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: dates
dtype: string
- name: product_id
dtype: string
- name: sales
dtype: float64
splits:
- name: train
num_bytes: 38430
num_examples: 1098
download_size: 10860
dataset_size: 38430
---
# time-series-data
## Overview
The time-series-data is a fake dataset containing a sales history of three years of a particular product (chocolate).
## Dataset Details
The dataset is used in this [notebook](https://github.com/Nkluge-correa/TeenyTinyCastle/blob/master/ML-Intro-Course/14_time_series_forecasting.ipynb)
to introduction to time series forecasting and XGBoost.
- Dataset Name: time-series-data
- Language: English
- Total Size: 1,098
## Contents
The dataset consists of a data frame with the following columns:
- dates
- product_id
- sales
```bash
{
dates: "2020-01-01",
product_id: "chocolate",
sales: 137
}
```
## How to use
```python
from datasets import load_dataset
dataset = load_dataset("AiresPucrs/time-series-data", split='train')
```
## License
This dataset is licensed under the Apache-2.0.
|