Baselight

COVID-19 Osaka City In Japan Data

COVID-19 data in Osaka,Japan from January in 2020 to July in 2021

@kaggle.nohrud_covid19_osaka_city_in_japan_data

About this Dataset

COVID-19 Osaka City In Japan Data

COVID-19 is spreading like wild fire in Osaka, Japan, as in the world. I tried downloading COVID-19 open data and wanted to know the change from January in 2020. I was surprised at the change when I visualized the data on Matplotlib. I felt the wave of COVID-19 looked like a cyclical wave. Some machine learning or deep learning models or something would show the cyclical wave's future from the wave itself. It's in May now. And predict what will happen in July 31th. This dataset in only one CSV file with positive numbers and the death toll .etc.

Tables

N 050921–073121covid19 Osaka Daily Data

@kaggle.nohrud_covid19_osaka_city_in_japan_data.n_050921_073121covid19_osaka_daily_data
  • 15.84 KB
  • 449 rows
  • 7 columns
Loading...

CREATE TABLE n_050921_073121covid19_osaka_daily_data (
  "date" TIMESTAMP,
  "prefecture_code" BIGINT,
  "prefecture" VARCHAR,
  "positive_daily" BIGINT,
  "cumulative_sum_positive_daily" BIGINT,
  "fatal_daily" BIGINT,
  "cumulative_sum_fatal_daily" BIGINT
);

Covid19 Osaka Daily Data

@kaggle.nohrud_covid19_osaka_city_in_japan_data.covid19_osaka_daily_data
  • 15.42 KB
  • 479 rows
  • 7 columns
Loading...

CREATE TABLE covid19_osaka_daily_data (
  "date" TIMESTAMP,
  "prefecture_code" BIGINT,
  "prefecture" VARCHAR,
  "positive_daily" BIGINT,
  "cumulative_sum_positive_daily" BIGINT,
  "fatal_daily" BIGINT,
  "cumulative_sum_fatal_daily" BIGINT
);