0
6

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 2019-04-25

#pandas
pandasは、Pythonにおいて、データ解析を支援する機能を提供するライブラリである。

##pandasのimport
pandasにpdという名前をつけてimportする


import pandas as pd

##csvファイルの読み込み
URIAGE.csvという名前のcsvファイルを読み込む

df = pd.read_csv('./data/URIAGE.csv')

##データの確認
dfというデータの最初の10行を表示する


df.head(10)

dfというデータの最後の10行を表示する


df.tail(10)

任意の列だけ取り出す##

TANKAという列とSURYOという列だけ取り出し、上から5行を表示


df[['TANKA', 'SURYO']].head()

##どんなデータが入っているか表示##
unique()により重複しないようにデータを表示できる
HIN_NMという列のデータを表示(重複なし)

df.HIN_NM.unique()
0
6
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
0
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?