From a566537bbfa20970bb4fc42c3ddb3fd1dc5095df Mon Sep 17 00:00:00 2001 From: Arthit Suriyawongkul Date: Tue, 19 Jan 2021 04:30:46 +0700 Subject: [PATCH 1/2] Add notes on column name changes --- .../csse_covid_19_daily_reports/README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/csse_covid_19_data/csse_covid_19_daily_reports/README.md b/csse_covid_19_data/csse_covid_19_daily_reports/README.md index e69de29bb2d..514e660ebfb 100644 --- a/csse_covid_19_data/csse_covid_19_daily_reports/README.md +++ b/csse_covid_19_data/csse_covid_19_daily_reports/README.md @@ -0,0 +1,10 @@ +Some column names had previously called differently, +the list below shows the previous label follows by the current label: + +- "Province/State" -> "Province_State" +- "Country/Region" -> "Country_Region" +- "Last Update" -> "Last_Update" +- "Latitude" -> "Lat" +- "Longitude" -> "Long_" +- "Incidence_Rate" -> "Incident_Rate" +- "Case-Fatality_Ratio" -> "Case_Fatality_Ratio" From 06972bae18aab4eda99e144a59766db24a2c36cf Mon Sep 17 00:00:00 2001 From: Arthit Suriyawongkul Date: Tue, 19 Jan 2021 05:01:02 +0700 Subject: [PATCH 2/2] Update README.md --- .../csse_covid_19_daily_reports/README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/csse_covid_19_data/csse_covid_19_daily_reports/README.md b/csse_covid_19_data/csse_covid_19_daily_reports/README.md index 514e660ebfb..e5b9a736549 100644 --- a/csse_covid_19_data/csse_covid_19_daily_reports/README.md +++ b/csse_covid_19_data/csse_covid_19_daily_reports/README.md @@ -1,4 +1,8 @@ -Some column names had previously called differently, +## Daily reports (csse_covid_19_daily_reports) + +### Fields + +Some field names had previously called differently, the list below shows the previous label follows by the current label: - "Province/State" -> "Province_State" @@ -8,3 +12,12 @@ the list below shows the previous label follows by the current label: - "Longitude" -> "Long_" - "Incidence_Rate" -> "Incident_Rate" - "Case-Fatality_Ratio" -> "Case_Fatality_Ratio" + +### Datetime format + +- 22 Jan 2020 to 1 Feb 2020: `m/d/yyyy HH:MM` (e.g. 2/1/2020 11:03) +- 2 Feb 2020 to 21 Mar 2020: `yyyy-mm-ddTHH:MM:SS` (e.g. 2020-03-21T22:43:04) +- 22 Mar, 28-30 Mar, 2 Apr, 4 Apr, 6 Apr 2020: `m/d/yy HH:MM` (e.g. 3/22/20 23:45) +- 23-27 Mar, 1 Apr, 3 Apr, 5 Apr 2020, and since 7 Apr 2020: `yyyy-mm-dd HH:MM:SS` (e.g. 2020-03-23 23:19:34) + +If time is not required, using the date from filename can be more convenient.