From 0a334da486d91927b7fdb7b7709cf280fbd5ae6b Mon Sep 17 00:00:00 2001 From: 0db2f0554d3b3bbdf0f34a0c1240bdef <0db2f0554d3b3bbdf0f34a0c1240bdef@app-learninglab.inria.fr> Date: Fri, 12 Jun 2020 15:54:31 +0000 Subject: [PATCH] =?UTF-8?q?Cr=C3=A9ation=20du=20document=20computationnel?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...ans l'atmosph\303\250re depuis 1958.ipynb" | 61 +++++++++++++++++++ module3/exo3/exercice.ipynb | 25 -------- 2 files changed, 61 insertions(+), 25 deletions(-) create mode 100644 "module3/exo3/Concentration de CO2 dans l'atmosph\303\250re depuis 1958.ipynb" delete mode 100644 module3/exo3/exercice.ipynb diff --git "a/module3/exo3/Concentration de CO2 dans l'atmosph\303\250re depuis 1958.ipynb" "b/module3/exo3/Concentration de CO2 dans l'atmosph\303\250re depuis 1958.ipynb" new file mode 100644 index 0000000..aeaa6ce --- /dev/null +++ "b/module3/exo3/Concentration de CO2 dans l'atmosph\303\250re depuis 1958.ipynb" @@ -0,0 +1,61 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Evolution de la concentration de CO2 dans l'atmosphère depuis 1958." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Modules Python utilisés dans cette étude" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": {}, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "import isoweek\n", + "import os\n", + "import urllib.request # utile pour créer fichier directement à partir de l'URL" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En 1958, Charles David Keeling a initié une mesure de la concentration de CO2 dans l'atmosphère à l'observatoire de Mauna Loa, Hawaii, États-Unis qui continue jusqu'à aujourd'hui.\n", + "Les données sont disponibles sur le [site Web de l'institut Scripps](https://scrippsco2.ucsd.edu/data/atmospheric_co2/primary_mlo_co2_record.html)." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.6.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/module3/exo3/exercice.ipynb b/module3/exo3/exercice.ipynb deleted file mode 100644 index 0bbbe37..0000000 --- a/module3/exo3/exercice.ipynb +++ /dev/null @@ -1,25 +0,0 @@ -{ - "cells": [], - "metadata": { - "kernelspec": { - "display_name": "Python 3", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.6.3" - } - }, - "nbformat": 4, - "nbformat_minor": 2 -} - -- 2.18.1