opciones / README.md
gauss314's picture
Update README.md
4efb8da verified
metadata
license: apache-2.0
task_categories:
  - tabular-classification
  - tabular-regression
tags:
  - Merval
  - options
pretty_name: Merval historical options data, for deep learning and machine learning tests

Downloading this Options Dataset

This document will guide you through the steps to download the Merval options dataset from Hugging Face Datasets.

To start, you'll need to install Hugging Face's datasets library if you haven't done so already. You can do this using the following pip command:

!pip install datasets

Here's the Python code to load the Merval equity dataset from Hugging Face Datasets and convert it into a pandas DataFrame:

from datasets import load_dataset
import pandas as pd

id = "gauss314/opciones"
data = load_dataset(id)
df = pd.DataFrame(data['train'][:])