From da2c8e7b5798f79a34c870c72cc381312e36c1fd Mon Sep 17 00:00:00 2001 From: 1899a69eca748c9e8b02007d0e49196a <1899a69eca748c9e8b02007d0e49196a@app-learninglab.inria.fr> Date: Sat, 23 May 2020 14:50:51 +0000 Subject: [PATCH] Add comment on archived data --- module3/exo3/exercice.ipynb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/module3/exo3/exercice.ipynb b/module3/exo3/exercice.ipynb index 182726f..e76d00f 100644 --- a/module3/exo3/exercice.ipynb +++ b/module3/exo3/exercice.ipynb @@ -23,13 +23,14 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 24, "metadata": {}, "outputs": [], "source": [ "confirmed = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_confirmed_global.csv')\n", "recovered = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_recovered_global.csv')\n", - "deaths = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv')" + "deaths = pd.read_csv('https://raw.githubusercontent.com/CSSEGISandData/COVID-19/master/csse_covid_19_data/csse_covid_19_time_series/time_series_covid19_deaths_global.csv')\n", + "# all the data is also in the archived_raw_data subdir in case of deletion of the original sources." ] }, { -- 2.18.1