From 45d65e25d796a2755de69f75c6a25da2f542fb21 Mon Sep 17 00:00:00 2001 From: Lisphilar <7270139+lisphilar@users.noreply.github.com> Date: Sun, 14 Feb 2021 00:29:59 +0900 Subject: [PATCH] data: add information of covsirphy.JapanData --- data/README.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/data/README.md b/data/README.md index e6ccae29d..2d138fabf 100644 --- a/data/README.md +++ b/data/README.md @@ -12,6 +12,25 @@ This is a COVID-19 dataset in Japan. This does not include the cases in Diamond - The number of cases at prefecture level - Metadata of each prefecture +This dataset can be retrieved with CovsirPhy (Python library). + +```bash +pip install covsirphy --upgrade +``` + +```Python +import covsirphy as cs +data_loader = cs.DataLoader() +japan_data = data_loader.japan() +# The number of cases (Total/each province) +clean_df = japan_data.cleaned() +# Metadata +meta_df = japan_data.meta() +``` + +Please refer to [CovsirPhy Documentation: Japan-specific dataset](https://lisphilar.github.io/covid19-sir/usage_dataset.html#Japan-specific-dataset). + + Before analysing the data, please refer to [Kaggle notebook: EDA of Japan dataset](https://www.kaggle.com/lisphilar/eda-of-japan-dataset) and [COVID-19: Government/JHU data in Japan](https://www.kaggle.com/lisphilar/covid-19-government-jhu-data-in-japan). The detailed explanation of the build process is discussed in [Steps to build the dataset in Japan](https://www.kaggle.com/lisphilar/covid19-dataset-in-japan/discussion/148766).