Spaces:
Sleeping
Sleeping
File size: 404 Bytes
4ba360f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | import pandas as pd
import os
def load_data(file_path: str) -> pd.DataFrame:
"""
Loads CSV data into a pandas DataFrame.
Args:
file_path (str): Path to the CSV file.
Returns:
pd.DataFrame: Loaded dataset.
"""
if not os.path.exists(file_path):
raise FileNotFoundError(f"File not found: {file_path}")
return pd.read_csv(file_path) |