Iris dataset Author: Team Example
Iris — Exploratory Data Analysis¶
A tiny example notebook to verify the site generator.
1. Introduction¶
This notebook demonstrates the required first-cell format and simple EDA on the Iris dataset.
In [ ]:
import pandas as pd
import seaborn as sns
df = sns.load_dataset('iris')
df.head()
In [ ]:
df.describe()