Python「1.1. csvファイルを読み込む」を更新しました

Pythonの
1.1. csvファイルを読み込む」のページを更新しました。

同ページの「3. 日付をindexとして読み込む」について、仕様の変更によるワーニングが出る為、Pythonの指示に従った新しい書式を反映しました。

具体的にはdf['1999']df['2021-02']を、.loc[]を用いて、df.loc['1999']df.loc['2021-02']としました。

旧形式の df['1999']df['2021-02'] を実行した際には、以下のエラーが表示されます。

FutureWarning: Indexing a DataFrame with a datetimelike index using a single string to slice the rows, like frame[string], is deprecated and will be removed in a future version. Use frame.loc[string] instead.

これは、「今後は、この形式は使用できなくなるので、.loc[]を使って df.loc[string] のように書きなさい」という意味です。