Update README.md
Browse files
README.md
CHANGED
|
@@ -19,6 +19,47 @@ dataset_info:
|
|
| 19 |
download_size: 10860
|
| 20 |
dataset_size: 38430
|
| 21 |
---
|
| 22 |
-
#
|
| 23 |
|
| 24 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
download_size: 10860
|
| 20 |
dataset_size: 38430
|
| 21 |
---
|
| 22 |
+
# time-series-data
|
| 23 |
|
| 24 |
+
## Overview
|
| 25 |
+
|
| 26 |
+
The time-series-data is a fake dataset containing a sales history of three years of a particular product (chocolate).
|
| 27 |
+
|
| 28 |
+
## Dataset Details
|
| 29 |
+
|
| 30 |
+
The dataset is used in this [notebook](https://github.com/Nkluge-correa/TeenyTinyCastle/blob/master/ML-Intro-Course/14_time_series_forecasting.ipynb)
|
| 31 |
+
to introduction to time series forecasting and XGBoost.
|
| 32 |
+
|
| 33 |
+
- Dataset Name: time-series-data
|
| 34 |
+
- Language: English
|
| 35 |
+
- Total Size: 1,098
|
| 36 |
+
|
| 37 |
+
## Contents
|
| 38 |
+
|
| 39 |
+
The dataset consists of a data frame with the following columns:
|
| 40 |
+
|
| 41 |
+
- dates
|
| 42 |
+
- product_id
|
| 43 |
+
- sales
|
| 44 |
+
|
| 45 |
+
```bash
|
| 46 |
+
{
|
| 47 |
+
dates: "2020-01-01",
|
| 48 |
+
product_id: "chocolate",
|
| 49 |
+
sales: 137
|
| 50 |
+
|
| 51 |
+
}
|
| 52 |
+
```
|
| 53 |
+
|
| 54 |
+
## How to use
|
| 55 |
+
|
| 56 |
+
```python
|
| 57 |
+
from datasets import load_dataset
|
| 58 |
+
|
| 59 |
+
dataset = load_dataset("AiresPucrs/time-series-data", split='train')
|
| 60 |
+
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
## License
|
| 64 |
+
|
| 65 |
+
This dataset is licensed under the Apache-2.0.
|