Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
Tags:
medical
License:
import pandas as pd | |
# Read the dataset file | |
df = pd.read_parquet('recurv_dataset.parquet') | |
# Display basic information about the dataset | |
print("\nDataset Info:") | |
print(df.info()) | |
# Display the first few rows | |
print("\nFirst few rows:") | |
print(df.head()) |