This notebook performs Exploratory Data Analysis (EDA) on the classic Iris dataset using only two libraries:
pandasfor data handling & statisticsmatplotlibfor all visualizations
Source: Iris Dataset CSV
It contains:
- Sepal length & width
- Petal length & width
- Species (Setosa, Versicolor, Virginica)
.mean(),.median(),.mode().min(),.max(),.std(),.var().skew(),.kurt(),.sum(),.count().describe(),.corr(),.cov()
- Line plots
- Scatter plots
- Error bars
- Histograms & Binning
- Density plot
- 2D Contour plot
- Multiple subplots
- 3D plot
- 📈 Sepal & petal measurements over samples
- 🔵 Scatter plots between features
- 🧭 Contour plots with synthetic functions
- 🧊 3D plot showing Sepal & Petal relationships
pip install pandas matplotlib