File size: 265 Bytes
a8a7584
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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())