Palmer Penguins
Dataset
The Palmer Archipelago penguin dataset contains observation data of 344 penguins from 3 species, serving as a modern alternative to the classic Iris dataset for data exploration, visualization teaching, and multi-class model training.
Dataset Highlights
A modern alternative to the Iris dataset, designed for teaching
Three Species Classification
Includes body measurement data of three penguin species: Adelie, Chinstrap, and Gentoo, with clear species differences.
Body Measurements
Four continuous features: bill length, bill depth, flipper length, and body mass, along with three categorical features: species, island, and sex.
Iris Alternative
Promoted by Dr. Allison Horst, widely used in data science education as a modern alternative to the Iris dataset.
Visualization Friendly
Body size differences between species are very intuitive in scatter plots and box plots, making it ideal material for data visualization teaching.
Ecological Background
The data comes from real ecological research in the Antarctic Palmer Archipelago, with scientific research value.
Completely Open
CC0 public domain license, with no usage restrictions, freely usable for teaching, research, and commercial projects.
Applicable Scenarios
Valuable from introductory data science to ecological research
Multi-class Introduction
A three species classification task, ideal starting point for learning algorithms like KNN, SVM, decision trees, etc.
Data Visualization
Intuitive body size differences between species, suitable for practicing scatter plots, box plots, and pair plots.
Clustering Analysis
Unsupervised learning practice, exploring the performance of algorithms like K-Means, hierarchical clustering, etc.
Teaching Demonstration
Alternative to the Iris dataset, used for classification examples in classroom teaching and textbooks.
Data Preview
The following are examples of the first few rows of the Palmer Penguins dataset
species,island,bill_length_mm,bill_depth_mm,flipper_length_mm,body_mass_g,sex,year Adelie,Torgersen,39.1,18.7,181,3750,male,2007 Adelie,Torgersen,39.5,17.4,186,3800,female,2007 Adelie,Torgersen,40.3,18.0,195,3250,female,2007 Adelie,Torgersen,NA,NA,NA,NA,NA,2007 Adelie,Torgersen,36.7,19.3,193,3450,female,2007
3 Steps to Get Started Quickly
From browsing to analysis, you can start your data science project in minutes
Browse the Dataset
View dataset details on the Ace Data Cloud platform, understand field descriptions, sample size, and licensing agreements.
Download Data
Download the CSV file (15 KB), the data is compact and ready to use.
Load and Analyze
Use pandas.read_csv() to load the data, and seaborn.pairplot() to quickly visualize species differences.
Start Exploring Penguin Data
A modern introductory dataset, in the public domain, available for immediate download. A perfect alternative to the Iris dataset, making data science learning more vivid and interesting.