Last active
January 20, 2025 16:14
-
-
Save gabrielsimas/112670b8ba70e8d181bfe62445f9bdbc to your computer and use it in GitHub Desktop.
desafio-3-trend-analysis-rate-co2-mauna-loa.ipynb
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nbformat": 4, | |
"nbformat_minor": 0, | |
"metadata": { | |
"colab": { | |
"provenance": [], | |
"authorship_tag": "ABX9TyNMB1i0xGqAgsnq+WFL8QOK", | |
"include_colab_link": true | |
}, | |
"kernelspec": { | |
"name": "python3", | |
"display_name": "Python 3" | |
}, | |
"language_info": { | |
"name": "python" | |
} | |
}, | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": { | |
"id": "view-in-github", | |
"colab_type": "text" | |
}, | |
"source": [ | |
"<a href=\"https://colab.research.google.com/gist/gabrielsimas/112670b8ba70e8d181bfe62445f9bdbc/desafio-3-an-lise-de-tend-ncias-de-emiss-o-de-co2.ipynb\" target=\"_parent\"><img src=\"https://colab.research.google.com/assets/colab-badge.svg\" alt=\"Open In Colab\"/></a>" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"source": [ | |
"# Project Description\n", | |
"This Python program will analyze a dataset containing CO2 emission levels over the years. The program will allow users to visualize the trends of CO2 emissions, identify any seasonal patterns, and calculate basic statistics (like average levels, max, and min). It will help users understand the impact of human activity on the environment by visualizing the changes in CO2 concentration over time.\n", | |
"\n", | |
"We will use pandas for data manipulation, matplotlib for plotting the data, and seaborn for additional data visualization features.\n", | |
"\n", | |
"# How the program works\n", | |
"\n", | |
"For this we can use publicly available data like CO2 levels from the [Mauna Loa Observatory](https://substack.com/redirect/81d6d9af-76eb-4f7b-a02d-ebe41285b3dd?j=eyJ1IjoidzhxayJ9.6OxDH3uNOEYLNnDVN_TDL6lC5QXKQmi0sHZHWZeRPT0https://gml.noaa.gov/ccgg/trends/data.html). Here’s a sample CSV dataset to download.\n", | |
"\n", | |
"@ Expected Output\n", | |
"The program should generate the following graph from the CSV file linked above. It shows the amount of CO2 in ppm over the last four years.\n", | |
"\n", |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment