Initial commit with parquet files and README
Browse files
README.md
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
# Stocks_2018 Dataset
|
3 |
+
|
4 |
+
This dataset contains stock market data from the year 2018. It is divided into three parts:
|
5 |
+
|
6 |
+
- **Train**: `train_filtered.parquet`
|
7 |
+
- **Test**: `test_filtered.parquet`
|
8 |
+
- **Validation**: `validation_filtered.parquet`
|
9 |
+
|
10 |
+
## Dataset Structure
|
11 |
+
|
12 |
+
Each parquet file contains the following columns:
|
13 |
+
|
14 |
+
- `date`: The date of the stock data.
|
15 |
+
- `open`: Opening price.
|
16 |
+
- `close`: Closing price.
|
17 |
+
- `high`: Highest price of the day.
|
18 |
+
- `low`: Lowest price of the day.
|
19 |
+
- `volume`: Trading volume.
|
20 |
+
|
21 |
+
## Usage
|
22 |
+
|
23 |
+
```python
|
24 |
+
from datasets import load_dataset
|
25 |
+
|
26 |
+
dataset = load_dataset("username/stocks_2018")
|
27 |
+
```
|
28 |
+
|
29 |
+
Replace `username` with your Hugging Face username.
|
30 |
+
|
31 |
+
## License
|
32 |
+
|
33 |
+
Specify the license under which the dataset is released.
|