Update README.md
Browse files
README.md
CHANGED
@@ -8,3 +8,25 @@ tags:
|
|
8 |
- equity
|
9 |
pretty_name: Merval daily variations, for deep learning and machine learning tests
|
10 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
8 |
- equity
|
9 |
pretty_name: Merval daily variations, for deep learning and machine learning tests
|
10 |
---
|
11 |
+
|
12 |
+
# Downloading the Options IV SP500 Dataset
|
13 |
+
|
14 |
+
This document will guide you through the steps to download the Merval equity dataset from Hugging Face Datasets.
|
15 |
+
|
16 |
+
To start, you'll need to install Hugging Face's `datasets` library if you haven't done so already.
|
17 |
+
You can do this using the following pip command:
|
18 |
+
|
19 |
+
```python
|
20 |
+
!pip install datasets
|
21 |
+
```
|
22 |
+
|
23 |
+
Here's the Python code to load the Merval equity dataset from Hugging Face Datasets and convert it into a pandas DataFrame:
|
24 |
+
|
25 |
+
```python
|
26 |
+
from datasets import load_dataset
|
27 |
+
import pandas as pd
|
28 |
+
|
29 |
+
id = "gauss314/arg-equity"
|
30 |
+
data_iv = load_dataset(id)
|
31 |
+
df_iv = pd.DataFrame(data_iv['train'][:])
|
32 |
+
```
|