no commit message

parent 11313a97
......@@ -59,7 +59,7 @@
},
{
"cell_type": "code",
"execution_count": 3,
"execution_count": 17,
"metadata": {},
"outputs": [
{
......@@ -1024,13 +1024,21 @@
"[1846 rows x 10 columns]"
]
},
"execution_count": 3,
"execution_count": 17,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"raw_data = pd.read_csv(data_url, skiprows=1)\n",
"#raw_data = pd.read_csv(data_url, skiprows=1)\n",
"data_file = \"syndrome_grippal.csv\"\n",
"import os\n",
"import urllib.request\n",
"\n",
"if not os.path.isfile(data_file):\n",
" urllib.request.urlretrieve(data_url, data_file)\n",
"\n",
"raw_data = pd.read_csv(data_file, skiprows=1)\n",
"raw_data"
]
},
......
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