1
1

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.

Pandas備忘録

Last updated at Posted at 2017-11-06

##データの読み込み(CSVファイル)
import pandas as pd
file = pd.read_csv("FileName.csv")
csvファイル読み込み.PNG

*データが列の名前に組み込まれたとき*
file = pd.read_csv("FileName.csv",header=None)
csv改良.PNG

##使えそうな関数とか
###shape
データ行列の形を知ることができる
*shapeは関数じゃないから.shape()としない(アトリビュート?とかいうやつっぽい)*
shape.PNG

###head()
先頭から5行を取得
head().PNG

*引数に数字を入れることで表示される行数を指定できる*
先頭から7行取得
head(7).PNG

###tail()
末尾から5行を取得
tail().PNG

*引数に数字を入れることで表示される行数を指定できる*
末尾から7行取得
tail(7).PNG

###describe()
基本統計量の確認ができる

###info()
カラムごとの情報を確認できる

###mean()
test["A"].mean()
こんな感じで記述してカラムAの要素の平均値が出せる
###median()
test["A"].median()
こんな感じで記述してカラムAの要素の中央値が出せる

###sort_values(by="XXX"):昇順
test[test["おすし"]=="まぐろ"].sort_values(by="金額")
こんな感じで書くと、データフレームtestの"おすし"カラム中の"まぐろ"要素を抜き出して、"金額"で昇順ソートする

###sort_values(by="XXX",ascending=False):降順
test[test["おすし"]=="まぐろ"].sort_values(by="金額")
こんな感じで書くと、データフレームtestの"おすし"カラム中の"まぐろ"要素を抜き出して、"金額"で降順ソートする

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?