aaaa

parent 4f2e2911
...@@ -28,13 +28,25 @@ ...@@ -28,13 +28,25 @@
}, },
{ {
"cell_type": "code", "cell_type": "code",
"execution_count": 9, "execution_count": 24,
"metadata": {}, "metadata": {},
"outputs": [], "outputs": [],
"source": [ "source": [
"\n", "\n",
"data_file = \"syndrome-grippal.csv\"\n",
"\n", "\n",
"data_url = \"http://www.sentiweb.fr/datasets/incidence-PAY-3.csv\"\n" "import os\n",
"import urllib.request\n",
"if not os.path.exists(data_file):\n",
" urllib.request.urlretrieve(data_url, data_file)\n",
"\n"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"On fait une copie locale pour garantir la pérénnité des données."
] ]
}, },
{ {
......
This diff is collapsed.
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