This project is an interactive Python GUI application using Tkinter to visualize, analyze, and gain insights from heart disease data, adhering to object-oriented design principles and allowing user interaction to explore the data.
To run the application, ensure you have the following dependencies installed:
- matplotlib >= 3.8.4, < 4.0
- numpy >= 1.26.4, < 2.0
- pandas >= 2.2.2, < 2.3
- seaborn >= 0.13.2, < 0.14
git clone https://github.com/colarrbear/Heart-Attack-Analysis
- Change your directory to Heart-Attack-Analysis
cd Heart-Attack-Analysis
- Create virtual environment using this command.
# On Linux or MacOS
python3 -m venv env
# On MS Windows
python -m venv env
- Activate the virtual environment
# On Linux or MacOS
source env/bin/activate
# On MS Windows
env\Scripts\activate
- Installing Dependencies
pip install -r requirements.txt
- Change your directory to code
cd code
- Run the application:
python main.py
(For macOS users, use python3 main.py
instead of python main.py
)
The dataset used in this project is obtained from Kaggle.