1 Matching Annotations
  1. Last 7 days
    1. import pandas as pd

      Load the data into a DataFrame

      file_path = "../datasets/penguins_classification.csv" penguins_df = pd.read_csv(file_path)

      Display the first few rows of the DataFrame

      print(penguins_df.head())