Skip to content

Latest commit

 

History

History
83 lines (57 loc) · 2.7 KB

README.md

File metadata and controls

83 lines (57 loc) · 2.7 KB

Project: Analyzing the Relationship between GDP and Life Expectancy

Table of Contents

Introduction

Studying the relationship between GDP and Life Expectancy provides valuable informed decisions that could help to shape policices and help populations in these areas.

Countries data include: Chile, China, Germany, Mexico, United States, and Zimbabwe.

Getting Started

Questions

  1. Has life expectancy increased over time in the six nations?
  2. Has GDP increased over time in the six nations?
  3. Is there a correlation between GDP and life expectancy of a country?
  4. What is the average life expectancy in these nations?
  5. What is the distribution of that life expectancy?

Usage

Using Jupyter Notebook to open .py files.

Using data provided by all_data.csv. The dataset provided has the following columns of data:

  • Country - nation
  • Year - the year for the observation
  • Life expectancy at birth (years) - life expectancy value in years
  • GDP - Gross Domestic Product in U.S. dollars

If you encounter any issues or have suggestions for improvements, please open an issue on the Issues page.

Notebook Descriptions

  1. 'life_expectancy_gdp.ipynb': main notebook with analysis of topics.

Conclusion

Contributing

If you want to contribute to the project,

How to Contribute

  1. Fork the repository: Click on the "Fork" button on the top right corner of this page. This will create a copy of the project in your GitHub account.

  2. Clone your fork: Clone the repository to your local machine using the following command. Replace [your-username] with your GitHub username.

    git clone https://github.com/[your-username]/your-repository.git
  3. Create a new branch: Move into the project's directory and create a new branch for your contribution.

    cd your-repository
    git checkout -b feature-branch
  4. Make your changes: Implement your changes or addtions to the notebook.

  5. Commit your changes Commit your changes with a descriptive commit message.

    git commit -m "Add feature or addtion"
  6. Push to your fork: Push your changes to your forked repository on GitHub.

    git push origin feature-branch
    
  7. Create a Pull Request: Open a Pull Request (PR) on the original repository. Clearly describe your changes and why they should be merged.