0
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 3 years have passed since last update.

kaggle~pandas編~

Last updated at Posted at 2020-08-27

データの読み込み

コメント 2020-08-27 224123.png

フォーマットの確認

コメント 2020-08-27 224149.png

データの表示

先頭5行の表示
コメント 2020-08-27 224210.png

欠損値の確認

各要素が欠損していなければFalse
コメント 2020-08-27 224344.png

isany()は一つでも欠損値があればTRUEになる。
コメント 2020-08-27 224251.png

連結

concatで2つのデータフレームが結合できる。
axis=1で横方向に結合。
keysで名称を指定できる。
image.png

データのカウント

qiita.rb
# それぞれのランドマーク数をカウント
landmark_id_count = pd.DataFrame(train.groupby(['landmark_id'])['landmark_id'].count())
print(landmark_id_count)

image.png

名前の変更 rename()

landmark_idを各ラウンドマークの総数に変更する

qiita.rb
# Trueだと元のDataFrameが変更される.Flaseだと変更されない
landmark_id_count.rename(columns={'landmark_id': 'Count_Images'}, inplace=True)
print(landmark_id_count)

image.png

データのソート

多いランドマーク順にソートする

qiita.rb
landmark_id_count.sort_values(by=['Count_Images'],ascending=False, inplace=True)
print(landmark_id_count)

image.png

Indexの付けなおし

多いランドマーク順にソートする

qiita.rb
# indexをつけなおす。drop=Trueにすると元のindexは削除される
landmark_id_count.reset_index(drop=True, inplace=True)
print(landmark_id_count)

image.png

0
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
0
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?