A Python program to visualize and make calculations from medical examination data.
- pandas
- matplotlib
- seaborn
- Generating a bar plot of cardio against variables like active, alco, cholesterol, gluc, overweight, smoke
- Generating a heatmap correlation between the different variables
Before you begin, ensure you have met the following requirements:
- Python 3.10 or higher installed on your system. You can download Python from python.org.
- Poetry 1.6.1 installed on your system. You can install Poetry from python-poetry.org
Follow these steps to install and set up Poetry for this project:
- Install Poetry: Poetry is a Python package manager that simplifies dependency management and virtual environments. You can install Poetry by following their guide here.
- Clone the repository
git clone git@github.com:mrarvind90/fcc-medical-data-visualizer.git
- Change into the Project Directory
cd fcc-medical-data-visualizer
- Install Dependencies:
poetry install
- Run the Project:
poetry run python3 main.py
This project is licensed under the MIT License. See the LICENSE file for details.
We follow the black code style for this project. You can format your code using:
black .