This project demonstrates a complete exploratory data analysis (EDA) workflow on the Iris dataset using Python. It includes loading the dataset, basic statistics, grouped insights by species, and a variety of visualizations such as line charts, bar plots, histograms, and scatter plots.
- Load and explore the Iris dataset using
scikit-learn - Perform data cleaning and transformation with
pandas - Generate summary statistics for each feature
- Group data by species and compute averages
- Create beautiful visualizations using
matplotlibandseaborn
- Python 3.x
- pandas
- numpy
- seaborn
- matplotlib
- scikit-learn
-
Clone this repository or download the
.pyfile. -
Install dependencies:
pip install pandas numpy matplotlib seaborn scikit-learn