Init

parent b8b4f547
{ {
"cells": [], "cells": [
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Concentration de $CO_2$ dans l'atmosphère depuis 1958"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Nous étudions l'évolution de la concentration de $CO_2$ dans l'atmosphère depuis 1958 à partir des données de l'[Institut Scripps](https://scrippsco2.ucsd.edu/data/atmospheric_co2/primary_mlo_co2_record.html). L'étude a été réalisée avec les données au 23 octobre 2020. "
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"## Chargement et pré-traitement du jeu de données"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"On importe les librairies python adéquates pour étudier le jeu de données, disponible au format CSV."
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"%matplotlib inline\n",
"import matplotlib.pyplot as plt\n",
"import pandas as pd"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"Le jeu de données sont récupérées sur le site de l'institut Scripps, les données recouvrent la période de janvier 1958 à décembre 2020."
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"data_url = \"https://scrippsco2.ucsd.edu/assets/data/atmospheric/stations/in_situ_co2/monthly/monthly_in_situ_co2_mlo.csv\""
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": { "metadata": {
"kernelspec": { "kernelspec": {
"display_name": "Python 3", "display_name": "Python 3",
...@@ -16,10 +79,9 @@ ...@@ -16,10 +79,9 @@
"name": "python", "name": "python",
"nbconvert_exporter": "python", "nbconvert_exporter": "python",
"pygments_lexer": "ipython3", "pygments_lexer": "ipython3",
"version": "3.6.3" "version": "3.6.4"
} }
}, },
"nbformat": 4, "nbformat": 4,
"nbformat_minor": 2 "nbformat_minor": 2
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment