Skip to content

A Python program to visualize and make calculations from medical examination data.

License

Notifications You must be signed in to change notification settings

mrarvind90/fcc-medical-data-visualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

freeCodeCamp Social Banner

Python 3 Pandas Matplotlib

Medical Data Visualizer

License: MIT Code Style: black

A Python program to visualize and make calculations from medical examination data.

Technologies Used

  • pandas
  • matplotlib
  • seaborn

Features

  • Generating a bar plot of cardio against variables like active, alco, cholesterol, gluc, overweight, smoke
  • Generating a heatmap correlation between the different variables

Prerequisites

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

Installation and Setup

Follow these steps to install and set up Poetry for this project:

  1. Install Poetry: Poetry is a Python package manager that simplifies dependency management and virtual environments. You can install Poetry by following their guide here.
  2. Clone the repository
    git clone git@github.com:mrarvind90/fcc-medical-data-visualizer.git
  3. Change into the Project Directory
    cd fcc-medical-data-visualizer
  4. Install Dependencies:
    poetry install
  5. Run the Project:
    poetry run python3 main.py 

License

This project is licensed under the MIT License. See the LICENSE file for details.

Code Style

We follow the black code style for this project. You can format your code using:

black .