Untitled

Anonymous
plain_text
03/10/2025 12:25 PM
372 B
18
Indexable
# Load the dataset
data = pd.read_csv("merged_ecg_data.csv")

# Display basic information about the dataset
print("Dataset Information:")
data.info()

# Checking for duplicate records
duplicates = data.duplicated()
print(f"Total duplicate records: {duplicates.sum()}")
Editor is loading...
Leave a Comment