3
1

More than 3 years have passed since last update.

Kaggle COVID19 Global Forecasting

Last updated at Posted at 2020-03-26

Kaggle で公開されているデータ・セットで日本の情報を得る方法です。

COVID19 Global Forecasting (Week 2)

データの読み込み

data = pd.read_csv('../input/covid19-global-forecasting-week-2/train.csv')

今までの日本の感染者数の表示 (3月25日で 1307 人)

data.loc[data['Country_Region'] == 'Japan']

kaggle_04.png

今後の感染者数の表示 (ある方が作成したモデルを使った場合)

test_data[test_data['Country_Region']=='Japan']

kaggle_35.png

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1