Skip to content
Project: Clustering Antarctic Penguin Species
Arctic Penguin Exploration: Unraveling Clusters in the Icy Domain with K-means clustering
source: @allison_horst https://github.com/allisonhorst/penguins
You have been asked to support a team of researchers who have been collecting data about penguins in Antartica!
Origin of this data : Data were collected and made available by Dr. Kristen Gorman and the Palmer Station, Antarctica LTER, a member of the Long Term Ecological Research Network.
The dataset consists of 5 columns.
- culmen_length_mm: culmen length (mm)
- culmen_depth_mm: culmen depth (mm)
- flipper_length_mm: flipper length (mm)
- body_mass_g: body mass (g)
- sex: penguin sex
Unfortunately, they have not been able to record the species of penguin, but they know that there are three species that are native to the region: Adelie, Chinstrap, and Gentoo, so your task is to apply your data science skills to help them identify groups in the dataset!
# Import Required Packages
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.decomposition import PCA
from sklearn.cluster import KMeans
from sklearn.preprocessing import StandardScaler
# Loading and examining the dataset
penguins_df = pd.read_csv("data/penguins.csv")# examining the dataset
print(penguins_df.head())
print(penguins_df.info())# dealing with null values and outliers
penguins_df = penguins_df.dropna()
penguins_df.boxplot()
plt.show()
# thresholds
lower_threshold = 0
upper_threshold = 4000
# clean data
penguins_clean = penguins_df[(penguins_df['flipper_length_mm'] > lower_threshold) & (penguins_df['flipper_length_mm'] < upper_threshold)]
penguins_clean.boxplot()
plt.show()# data preprocessing
penguins_dummies = pd.get_dummies(penguins_clean).drop('sex_.', axis=1)
scaler = StandardScaler()
X = scaler.fit_transform(penguins_dummies)
penguins_preprocessed = pd.DataFrame(data=X, columns=penguins_dummies.columns)
penguins_preprocessed.head(10)# perform PCA
pca = PCA(n_components=None)
X_pca = pca.fit(penguins_preprocessed)
X_pca.explained_variance_ratio_
# determine n_components
n_components = sum(X_pca.explained_variance_ratio_ > 0.1)
# re-run PCA
new_pca = PCA(n_components=n_components)
penguins_PCA = new_pca.fit_transform(penguins_preprocessed)# determine clusters for k-means
ks = range(1,10)
inertias = []
for k in ks:
model = KMeans(n_clusters=k, random_state=42).fit(penguins_PCA)
inertias.append(model.inertia_)
# visualize with elbow plot
plt.plot(ks, inertias, marker='o')
plt.xlabel('Number of clusters')
plt.ylabel('Inertia')
plt.title('Elbow Method')
plt.show()
# number of clusters
n_clusters = 4# run kmeans
kmeans = KMeans(n_clusters=n_clusters, random_state=42).fit(penguins_PCA)
plt.scatter(penguins_PCA[:,0], penguins_PCA[:,1], c=kmeans.labels_, cmap='viridis')
plt.xlabel('First Principal Component')
plt.ylabel('Second Principal Component')
plt.title(f"K-Means Clustering (K={n_clusters})")
plt.legend()
plt.show()# creating statistics
penguins_clean['label'] = kmeans.labels_
numeric_columns = ['culmen_length_mm', 'culmen_depth_mm', 'flipper_length_mm', 'label']
stat_penguins = penguins_clean[numeric_columns].groupby('label').mean()
stat_penguins