2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

pythonでcsvファイルの読み込み/書き出し/分析

Last updated at Posted at 2019-04-13

今回はjupyternotebookで実行した結果に基づいて書きます。

#読み込み
例えばワークディレクトリにあるsample.csvを読み込んでdata1とする場合、

untitled.py
import pandas as pd
data1 = pd.read_csv('sample.csv')

read_csv()を使うためにあらかじめパッケージpandasimportしている必要があります。pdとしてimportするのが慣例です。

#書き出し
例えばワークディレクトリにdata1sample.csvとして書き出す場合、

untitled.py
data1.to_csv('sample.csv)

これでワークディレクトリにsample.csvが新たに保存されます。

#分析
ロードしたデータの分析にはこれまたpandasの関数groupby()が役に立ちます。私が大学の課題などで使った時はこちらのサイトを参照しました。とてもわかりやすく書いてあります。

記事は以上です、ありがとうございました。


2
2
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
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?