from google.colab import drive import pandas as pd import matplotlib.pyplot as plt from sklearn.decomposition import PCA from sklearn.cluster import KMeans from sklearn.preprocessing import StandardScaler import warnings drive.mount('/content/gdrive') df = pd.read_csv('/content/gdrive/My Drive/datasets/penguins.csv') df = df.dropna() df = df.drop([9, 14]) # Inspect the results df.head()