5
10

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.

Python(axis = 0, axis =1)

Last updated at Posted at 2020-09-30

今回はPython(numpy ならびに pandas)での axis についてお話していきます。

■ axis の基本ルール

axis = 0:行方向(行01から02へ向かう方向)→ 縦方向
axis = 1:列方向(列AからBへ向かう方向)→ 横方向
image.png

■ 実際に確かめてみる

pandas における DataFrame を2つ用意してみます。
image.png
ここで concat(データフレームの連結)を行います。
image.png
以上のことから、axis の機能について確認することができました。

参考文献:Pythonによるあたらしいデータ分析の教科書
(Python 3 エンジニア認定データ分析試験 の公式テキスト)
URL:https://cbt.odyssey-com.co.jp/pythonic-exam.html

■ 例外もある

axis に関しては、numpy の基本演算から pandas のデータフレーム連結まで
上記の基本ルールをもとに処理することができます。

ただし、中には下記のようなものもあります。
image.png
普通に考えると

行(02)であれば、横に削除するから axis = 1
列(B)であれば、縦に削除するから axis = 0

となってしまうかもしれません。

こちらの場合には、あくまでニュアンスにはなりますが

・行方向(縦)に移動して、削除したい行を選択する → axis = 0
・列方向(横)に移動して、削除したい列を選択する → axis = 1

と考えると良いです。

5
10
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
5
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?