This project performs exploratory data analysis (EDA) on a given dataset. It includes generating summary statistics, visualizations, and correlation heatmaps.
eda-project /
│
├── data/ # Data files
│
└── dataset.csv # Example dataset
├── src/
│
├── eda.py # EDA script
│
└── utils.py # Utility functions
├── tests/ # Test scripts
│
└── test_utils.py # Unit tests for utilities
├── requirements.txt # Dependencies
└── README.md # Project documentation
-
Clone the repository:
git clone https://github.com/karimosman89/eda-project.git cd eda-project
-
Install the required packages:
pip install -r requirements.txt
-
Prepare your dataset in the /data directory and name it dataset.csv.
-
Run the EDA script:
python src/eda.py
python -m unittest discover -s tests
This project is licensed under the MIT License.